fix readability-avoid-const-params-in-decls

This commit is contained in:
wmayer
2023-11-14 20:24:51 +01:00
parent 73a1e90e45
commit 767647a05f
5 changed files with 31 additions and 31 deletions

View File

@@ -219,8 +219,7 @@ public:
/// setter methods for including debug information
/// intended to use via macro for autofilling of debugging information
inline void
setDebugInformation(const std::string& file, const int line, const std::string& function);
inline void setDebugInformation(const std::string& file, int line, const std::string& function);
inline void setTranslatable(bool translatable);
@@ -844,7 +843,7 @@ inline bool Exception::getTranslatable() const
}
inline void
Exception::setDebugInformation(const std::string& file, const int line, const std::string& function)
Exception::setDebugInformation(const std::string& file, int line, const std::string& function)
{
_file = file;
_line = line;