Skip to content

Commit

Permalink
fix merge / compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
richyo-work committed Jan 9, 2024
1 parent d2d9895 commit 81a7d6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/spdlog/details/log_attr.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ struct attr
attr(Key&& k, Value&& v) : key(std::move(k._key)), value(std::move(v._value)) {}

attr(Key const& k, Value const& v) : key(k._key), value(v._value) {
scramble(key, k);
value = std::to_string(v);
//scramble(key, k);
//value = std::to_string(v);
}
};

Expand Down

0 comments on commit 81a7d6f

Please sign in to comment.