dbg: allow empty argument list

This commit is contained in:
Johannes Kapfhammer 2019-10-06 21:17:37 +02:00
parent daeda942ad
commit cca34a1ad7
2 changed files with 27 additions and 6 deletions

View file

@ -5,6 +5,7 @@ signed main() {
dbg("hi");
string s="world";
dbg(s);
dbg();
dbg(false);
dbg(true);
dbg('c');
@ -17,5 +18,5 @@ signed main() {
dbg(map<int, string>{{3,"three"},{1,"one"}});
dbg(unordered_map<int, string>{{3,"three"},{1,"one"}});
dbg(unordered_set<int>{3,1,4});
cout << "hi\n";
dbg();
}