Skip to content

Commit 37c6be8

Browse files
authored
Merge pull request #27521 from apple/marcrasi-patch-1
2 parents e18f166 + cb85ecf commit 37c6be8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/SIL/SILConstants.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,8 +606,8 @@ class SymbolicValue {
606606

607607
static_assert(sizeof(SymbolicValue) == 2 * sizeof(uint64_t),
608608
"SymbolicValue should stay small");
609-
static_assert(std::is_pod<SymbolicValue>::value,
610-
"SymbolicValue should stay POD");
609+
static_assert(std::is_trivial<SymbolicValue>::value,
610+
"SymbolicValue should stay trivial");
611611

612612
inline llvm::raw_ostream &operator<<(llvm::raw_ostream &os, SymbolicValue val) {
613613
val.print(os);

0 commit comments

Comments
 (0)