We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e18f166 + cb85ecf commit 37c6be8Copy full SHA for 37c6be8
include/swift/SIL/SILConstants.h
@@ -606,8 +606,8 @@ class SymbolicValue {
606
607
static_assert(sizeof(SymbolicValue) == 2 * sizeof(uint64_t),
608
"SymbolicValue should stay small");
609
-static_assert(std::is_pod<SymbolicValue>::value,
610
- "SymbolicValue should stay POD");
+static_assert(std::is_trivial<SymbolicValue>::value,
+ "SymbolicValue should stay trivial");
611
612
inline llvm::raw_ostream &operator<<(llvm::raw_ostream &os, SymbolicValue val) {
613
val.print(os);
0 commit comments