VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/SharedPtr.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-06-22 16:02:42 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:20:14 +0100
commit41a22ca4e78df752d4ce143a692310ab9e48c686 (patch)
tree7167af89d885e032926cb79981fd981f7b685962 /src/Platform/SharedPtr.h
parent17823cb58c5c68e5d1cf8cc6e9d92d0ce6194d8d (diff)
downloadVeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.tar.gz
VeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.zip
Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.
Diffstat (limited to 'src/Platform/SharedPtr.h')
-rw-r--r--src/Platform/SharedPtr.h6
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
@@ -14,7 +14,7 @@
#ifdef nullptr
-namespace TrueCrypt
+namespace VeraCrypt
{
template <class T>
class SharedPtr
@@ -135,7 +135,7 @@ 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
@@ -151,7 +151,7 @@ namespace TrueCrypt
return shared_ptr <T> (new T (arg));
}
-#define make_shared TrueCrypt::make_shared
+#define make_shared VeraCrypt::make_shared
}