1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 08:26:38 +02:00

Fix some CoreExport types that should be DllExport.

This commit is contained in:
Sadie Powell
2024-01-23 14:02:34 +00:00
parent 1467de1c7e
commit 398d674cf4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
#pragma once
class CoreExport LDAPException : public ModuleException
class DllExport LDAPException : public ModuleException
{
public:
LDAPException(const Anope::string &reason) : ModuleException(reason) { }
+1 -1
View File
@@ -81,7 +81,7 @@ namespace SQL
/** A SQL exception, can be thrown at various points
*/
class CoreExport Exception : public ModuleException
class DllExport Exception : public ModuleException
{
public:
Exception(const Anope::string &reason) : ModuleException(reason) { }