diff options
author | lloyd <[email protected]> | 2015-03-10 23:00:22 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-10 23:00:22 +0000 |
commit | 28e5dd404b5d4e3f5eec1a64a198c8f301636e23 (patch) | |
tree | 1537ee927faf4a5af0dd60b44f74ffdc59685b81 | |
parent | c82c55f2913ca725dd025b4898de6ea7d9157ab2 (diff) |
LibraryInitializer being dllexport but completely inline seems to
confuse VC2013.
-rw-r--r-- | src/lib/base/init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/base/init.h b/src/lib/base/init.h index 96e676d63..dce564b46 100644 --- a/src/lib/base/init.h +++ b/src/lib/base/init.h @@ -19,7 +19,7 @@ namespace Botan { * case, and this class is no longer needed and kept only for backwards * compatability. */ -class BOTAN_DLL LibraryInitializer +class LibraryInitializer { public: LibraryInitializer(const std::string& = "") {} |