Skip to content

Commit

Permalink
More comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyGu committed Dec 20, 2017
1 parent e6a939d commit 596fa5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ class IsolateData {
};

struct ContextInfo {
explicit ContextInfo(std::string name) : name(name) {}
std::string name;
explicit ContextInfo(const std::string& name) : name(name) {}
const std::string name;
std::string origin;
bool is_default = false;
};
Expand Down

0 comments on commit 596fa5a

Please sign in to comment.