Skip to content

Commit

Permalink
Make ignstrtok private to Util.cc (#134)
Browse files Browse the repository at this point in the history
Signed-off-by: Hill Ma <[email protected]>

Co-authored-by: Louise Poubel <[email protected]>
  • Loading branch information
mahiuchun and chapulina authored Dec 4, 2020
1 parent 6f3437e commit 63f7e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@


#ifdef _WIN32
const auto &ignstrtok = strtok_s;
static const auto &ignstrtok = strtok_s;
#else
const auto &ignstrtok = strtok_r;
static const auto &ignstrtok = strtok_r;
#endif

static std::unique_ptr<ignition::common::SystemPaths> gSystemPaths(
Expand Down

0 comments on commit 63f7e55

Please sign in to comment.