Fix clang format issues (#1555)

This commit is contained in:
Jordan Bayles
2024-09-09 15:48:18 -07:00
committed by GitHub
parent 6668fa51ee
commit 5c003ecacc
6 changed files with 23 additions and 19 deletions

View File

@@ -69,7 +69,9 @@ public:
// Boilerplate
SecureAllocator() {}
template <typename U> SecureAllocator(const SecureAllocator<U>&) {}
template <typename U> struct rebind { using other = SecureAllocator<U>; };
template <typename U> struct rebind {
using other = SecureAllocator<U>;
};
};
template <typename T, typename U>