[gardening] Fix recently introduced \t

This commit is contained in:
practicalswift
2017-01-21 10:29:40 +01:00
parent 2b4a6a573a
commit 849b27b406

View File

@@ -843,8 +843,8 @@ namespace {
template <typename T>
struct OperatorLookup {
// Don't fold this into the static_assert: this would trigger an MSVC bug
// that causes the assertion to fail.
// Don't fold this into the static_assert: this would trigger an MSVC bug
// that causes the assertion to fail.
static constexpr T* ptr = static_cast<T*>(nullptr);
static_assert(ptr, "Only usable with operators");
};