mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Add C++17 test program
This commit is contained in:
parent
183fba44bf
commit
e09bdbe5c4
@ -592,6 +592,7 @@ TestPrograms/test_arm_sm4.cxx
|
||||
TestPrograms/test_asm_mixed.cxx
|
||||
TestPrograms/test_cxx.cxx
|
||||
TestPrograms/test_cxx11.cxx
|
||||
TestPrograms/test_cxx17.cxx
|
||||
TestPrograms/test_glibc.cxx
|
||||
TestPrograms/test_newlib.cxx
|
||||
TestPrograms/test_ppc_aes.cxx
|
||||
|
@ -2,5 +2,6 @@
|
||||
#include <forward_list>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
std::forward_list<int> x;
|
||||
return 0;
|
||||
}
|
||||
|
5
TestPrograms/test_cxx17.cxx
Normal file
5
TestPrograms/test_cxx17.cxx
Normal file
@ -0,0 +1,5 @@
|
||||
#include <exception>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
return 0 == std::uncaught_exceptions() ? 0 : 1;
|
||||
}
|
Loading…
Reference in New Issue
Block a user