summaryrefslogtreecommitdiff
path: root/include/util/ScopedPtr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/ScopedPtr.hpp')
-rwxr-xr-xinclude/util/ScopedPtr.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/util/ScopedPtr.hpp b/include/util/ScopedPtr.hpp
index 991409d..5fdd1f2 100755
--- a/include/util/ScopedPtr.hpp
+++ b/include/util/ScopedPtr.hpp
@@ -2,9 +2,10 @@
#define __SCOPEDPTR_H
#include "NonCopyable.hpp"
+#include "UtilExportable.hpp"
template< typename T >
-class DLL_VISIBLE scopedPtr : private noncopyable
+class UTIL_DLL_VISIBLE scopedPtr : private noncopyable
{
public:
explicit scopedPtr( T *p = 0 ) : m_p( p ) { }