Skip to content

Commit

Permalink
Fix DEBUG print template
Browse files Browse the repository at this point in the history
Resolves build issue when building with ``-DDEBUG``
  • Loading branch information
tony committed Apr 2, 2016
1 parent 213339a commit a8a3a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/environment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ namespace Sass {
if (!ends_with(i->first, "[f]") && !ends_with(i->first, "[f]4") && !ends_with(i->first, "[f]2")) {
std::cerr << prefix << std::string(indent, ' ') << i->first << " " << i->second;
if (Value* val = dynamic_cast<Value*>(i->second))
{ std::cerr << " : " << val->to_string(true, 5); }
{ std::cerr << " : " << val->to_string(); }
std::cerr << std::endl;
}
}
Expand Down

0 comments on commit a8a3a0e

Please sign in to comment.