Browse Source

Fix LNK4217 linker warnings on Windows

rdb 9 years ago
parent
commit
b3bb19180e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dtool/src/interrogatedb/extension.h

+ 1 - 1
dtool/src/interrogatedb/extension.h

@@ -31,7 +31,7 @@ public:
  * extended should create a specialization of this class template.
  */
 template<class T>
-class EXPCL_INTERROGATEDB Extension : public ExtensionBase<T> {
+class Extension : public ExtensionBase<T> {
 };
 
 /**