aboutsummaryrefslogtreecommitdiffstats
path: root/include/aligned_storage.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2018-07-31 03:02:16 +0100
committerGravatar Sadie Powell2019-01-25 02:49:03 +0000
commitfb17bba197a190b5865e2ddf4f70019a6dc23ba2 (patch)
treeafd8943530eceb5b14f457856edd9257bdc440ca /include/aligned_storage.h
parentUse C++14 compilers in Docker on Travis. (diff)
downloadinspircd++-fb17bba197a190b5865e2ddf4f70019a6dc23ba2.tar.gz
inspircd++-fb17bba197a190b5865e2ddf4f70019a6dc23ba2.tar.bz2
inspircd++-fb17bba197a190b5865e2ddf4f70019a6dc23ba2.zip
Replace the TR1NS macro with the std namespace.
Diffstat (limited to 'include/aligned_storage.h')
-rw-r--r--include/aligned_storage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/aligned_storage.h b/include/aligned_storage.h
index 7bf0fe0a3..02332b0e4 100644
--- a/include/aligned_storage.h
+++ b/include/aligned_storage.h
@@ -27,7 +27,7 @@ namespace insp
template <typename T>
class insp::aligned_storage
{
- mutable typename TR1NS::aligned_storage<sizeof(T), TR1NS::alignment_of<T>::value>::type data;
+ mutable typename std::aligned_storage<sizeof(T), std::alignment_of<T>::value>::type data;
public:
aligned_storage()