[NFC] Reformat std::optional tests

llvm-svn: 346630
This commit is contained in:
Louis Dionne
2018-11-12 01:38:30 +00:00
parent d9247890da
commit cdaf2b8dce
2 changed files with 4 additions and 4 deletions

View File

@@ -166,8 +166,8 @@ int main()
test_reference_extension();
}
{
constexpr std::optional<int> o1{4};
constexpr std::optional<int> o2 = o1;
static_assert( *o2 == 4, "" );
constexpr std::optional<int> o1{4};
constexpr std::optional<int> o2 = o1;
static_assert( *o2 == 4, "" );
}
}