Skip to content
Snippets Groups Projects
Commit c5fa1f1f authored by Faisal Vali's avatar Faisal Vali
Browse files

[NFC] Don't use C++17 standard lib variable template helper traits, instead use ::value.

llvm-svn: 314373
parent 02d8dde1
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ MacroArgs *MacroArgs::create(const MacroInfo *MI,
// Copy the actual unexpanded tokens to immediately after the result ptr.
if (!UnexpArgTokens.empty()) {
static_assert(std::is_trivially_copyable_v<Token>,
static_assert(std::is_trivially_copyable<Token>::value,
"assume trivial copyability if copying into the "
"uninitialized array (as opposed to reusing a cached "
"MacroArgs)");
......@@ -96,7 +96,7 @@ MacroArgs *MacroArgs::deallocate() {
// Run the dtor to deallocate the vectors.
this->~MacroArgs();
// Release the memory for the object.
static_assert(std::is_trivially_destructible_v<Token>,
static_assert(std::is_trivially_destructible<Token>::value,
"assume trivially destructible and forego destructors");
free(this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment