[PATCH] D54904: Introduce `AddressSpaceView` template parameter to `SizeClassAllocator32`, `FlatByteMap`, and `TwoLevelByteMap`.
Dan Liew via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 27 08:10:32 PST 2018
delcypher marked an inline comment as done.
delcypher added inline comments.
================
Comment at: lib/sanitizer_common/sanitizer_type_traits.h:36-40
+template <typename T, typename U>
+struct is_same : public false_type {};
+
+template <typename T>
+struct is_same<T, T> : public true_type {};
----------------
delcypher wrote:
> kubamracek wrote:
> > This (sanitizer_type_traits.h, the test file and the static_assert) can be moved to a separate patch.
> Sure. I'll try to do this.
Okay I've split this out into https://reviews.llvm.org/D54951 . I'll update this patch shortly.
Repository:
rCRT Compiler Runtime
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54904/new/
https://reviews.llvm.org/D54904
More information about the llvm-commits
mailing list