diff options
author | Sadie Powell <sadie@witchery.services> | 2024-01-23 14:02:34 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-01-23 14:06:46 +0000 |
commit | 398d674cf40c0dba4e4cd2edd0f325ace15128c2 (patch) | |
tree | fdde537c5a1f7c4f7410bf410b6d502b5270821e | |
parent | 1467de1c7ee03d393a62f57e54e564bd0462d758 (diff) |
Fix some CoreExport types that should be DllExport.
-rw-r--r-- | include/modules/ldap.h | 2 | ||||
-rw-r--r-- | include/modules/sql.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/ldap.h b/include/modules/ldap.h index b1589a18c..166e85fe9 100644 --- a/include/modules/ldap.h +++ b/include/modules/ldap.h @@ -8,7 +8,7 @@ #pragma once -class CoreExport LDAPException : public ModuleException +class DllExport LDAPException : public ModuleException { public: LDAPException(const Anope::string &reason) : ModuleException(reason) { } diff --git a/include/modules/sql.h b/include/modules/sql.h index 8eaf56c9a..0f2abc812 100644 --- a/include/modules/sql.h +++ b/include/modules/sql.h @@ -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) { } |