Skip to content

Commit

Permalink
Merge pull request #1265 from leonardopsantos/master
Browse files Browse the repository at this point in the history
Added namespace directive to fix compilation error under MinGW-w64.
  • Loading branch information
basvodde committed Dec 5, 2019
2 parents b0d4bf8 + cb8c457 commit d7ce9e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CppUTest/SimpleString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ SimpleString BracketsFormattedHexString(SimpleString hexString)
* Specifically nullptr_t is not officially supported
*/
#if __cplusplus > 199711L && !defined __arm__
SimpleString StringFrom(const nullptr_t value)
SimpleString StringFrom(const std::nullptr_t value)
{
(void) value;
return "(null)";
Expand Down

0 comments on commit d7ce9e5

Please sign in to comment.