Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying to address TSX regressions #6020

Merged
merged 2 commits into from May 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions Utilities/Config.h
Expand Up @@ -133,7 +133,7 @@ namespace cfg
return m_value;
}

bool get() const
const bool& get() const
{
return m_value;
}
Expand Down Expand Up @@ -184,7 +184,7 @@ namespace cfg
return m_value;
}

T get() const
const T& get() const
{
return m_value;
}
Expand Down Expand Up @@ -247,7 +247,7 @@ namespace cfg
return m_value;
}

int_type get() const
const int_type& get() const
{
return m_value;
}
Expand Down Expand Up @@ -347,7 +347,7 @@ namespace cfg
{
}

std::set<std::string> get_set() const
const std::set<std::string>& get_set() const
{
return m_set;
}
Expand Down Expand Up @@ -382,7 +382,7 @@ namespace cfg
{
}

std::map<std::string, logs::level> get_map() const
const std::map<std::string, logs::level>& get_map() const
{
return m_map;
}
Expand Down