build: Fix warnings in auxiliary files

This commit is contained in:
Eduardo Almeida
2022-12-22 12:28:57 +00:00
parent 6dedc58446
commit 5e4dfe69a6
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
namespace std
{
inline std::ostream&
operator<<(std::ostream& os, std::nullptr_t ptr)
operator<<(std::ostream& os, std::nullptr_t)
{
return os << "nullptr"; // whatever you want nullptr to show up as in the console
}

View File

@@ -1,4 +1,5 @@
int
main()
{
return 0;
}