diff options
Diffstat (limited to 'src/Platform/SharedPtr.h')
-rw-r--r-- | src/Platform/SharedPtr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Platform/SharedPtr.h b/src/Platform/SharedPtr.h index 3221265d..64e2909a 100644 --- a/src/Platform/SharedPtr.h +++ b/src/Platform/SharedPtr.h @@ -13,9 +13,9 @@ #include "SharedVal.h"
#ifdef nullptr
-namespace TrueCrypt
+namespace VeraCrypt
{
template <class T>
class SharedPtr
{
@@ -134,9 +134,9 @@ namespace TrueCrypt #ifdef shared_ptr
#undef shared_ptr
#endif
-#define shared_ptr TrueCrypt::SharedPtr
+#define shared_ptr VeraCrypt::SharedPtr
#ifdef make_shared
#undef make_shared
#endif
@@ -150,9 +150,9 @@ namespace TrueCrypt {
return shared_ptr <T> (new T (arg));
}
-#define make_shared TrueCrypt::make_shared
+#define make_shared VeraCrypt::make_shared
}
#endif // nullptr
|