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