Adjust test to avoid new warning

This commit is contained in:
amai2012 2022-03-25 16:21:28 +01:00 committed by GitHub
parent a7194410cf
commit df05c92bbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ private:
check("void f()\n"
"{\n"
" time_t t = 0;"
" std::localtime(&t);\n"
" auto lt = std::localtime(&t);\n"
"}");
ASSERT_EQUALS("[test.cpp:3]: (portability) Non reentrant function 'localtime' called. For threadsafe applications it is recommended to use the reentrant replacement function 'localtime_r'.\n", errout.str());