Skip to content

Commit

Permalink
fix: win: compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
elsamuko committed Jun 18, 2021
1 parent dd917df commit ddbc7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/printer/prettyprinter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void PrettyPrinter::collectPrints( const sys_string& path, const std::vector<sea

// print file path
#ifdef _WIN32
sys_string complete = opts.prefix + path;
sys_string complete = opts.pathPrefix + path;
boost::algorithm::replace_all( complete, L"\\", L"/" );
prints.emplace_back( utils::printFunc( cgreen, uriPrefix + std::string( complete.cbegin(), complete.cend() ) ) );
#else
Expand Down

0 comments on commit ddbc7ee

Please sign in to comment.