Skip to content

Commit

Permalink
Put delimiter string into backward::details namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
no-more-secrets committed Feb 27, 2020
1 parent b30401a commit c122f1f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backward.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,15 @@ template <typename T> T &move(T &v) { return v; }
} // namespace backward
#endif // BACKWARD_ATLEAST_CXX11

namespace backward {
namespace details {
#if defined(BACKWARD_SYSTEM_WINDOWS)
const char kBackwardPathDelimiter[] = ";";
#else
const char kBackwardPathDelimiter[] = ":";
#endif
} // namespace details
} // namespace backward

namespace backward {

Expand Down

0 comments on commit c122f1f

Please sign in to comment.