Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ranav committed Apr 28, 2019
1 parent c4173c8 commit f851372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pprint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ namespace pprint {
is_specialization<T, std::unordered_map>::value == false &&
is_specialization<T, std::unordered_multimap>::value == false, void>::type
print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) {
stream_ << std::string(indent, ' ') << "<Object " << type(value) << " at " << &value << ">"
stream_ << std::string(indent, ' ') << "<Object " << type(value) << ">"
<< line_terminator;
}

Expand Down

0 comments on commit f851372

Please # to comment.