Skip to content

Commit

Permalink
Fix msvc build
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Oct 5, 2023
1 parent 0c03ac7 commit 2f507cc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/cpptrace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,9 @@ namespace cpptrace {
return;
}
const auto reset = color ? ESC "0m" : "";
const auto red = color ? ESC "31m" : "";
const auto green = color ? ESC "32m" : "";
const auto yellow = color ? ESC "33m" : "";
const auto blue = color ? ESC "34m" : "";
const auto magenta = color ? ESC "35m" : "";
const auto cyan = color ? ESC "36m" : "";
const auto frame_number_width = detail::n_digits(static_cast<int>(frames.size()) - 1);
for(const auto& frame : frames) {
stream
Expand Down

0 comments on commit 2f507cc

Please sign in to comment.