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 /include/modules/ldap.h | |
parent | 1467de1c7ee03d393a62f57e54e564bd0462d758 (diff) |
Fix some CoreExport types that should be DllExport.
Diffstat (limited to 'include/modules/ldap.h')
-rw-r--r-- | include/modules/ldap.h | 2 |
1 files changed, 1 insertions, 1 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) { } |