Skip to content

Commit

Permalink
boolalphja
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm committed Dec 14, 2024
1 parent a76e075 commit e85e3b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/eval/object.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <ios>
#include <sstream>
#include <string>

Expand Down Expand Up @@ -87,7 +88,7 @@ auto operator<<(std::ostream& strm, const hashable_object::hash_key_type& t) ->
overloaded {
[&](int64_t val) { strm << val; },
[&](const std::string& val) { strm << '"' << val << '"'; },
[&](bool val) { strm << val; },
[&](bool val) { strm << std::boolalpha << val; },
},
t);
return strm;
Expand Down

0 comments on commit e85e3b4

Please sign in to comment.