summaryrefslogtreecommitdiff
path: root/src/Args.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Args.hpp')
-rw-r--r--src/Args.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Args.hpp b/src/Args.hpp
index ae42809..48fb77d 100644
--- a/src/Args.hpp
+++ b/src/Args.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2020 Joel Rosdahl and other contributors
+// Copyright (C) 2020-2021 Joel Rosdahl and other contributors
//
// See doc/AUTHORS.adoc for a complete list of contributors.
//
@@ -115,18 +115,14 @@ Args::size() const
return m_args.size();
}
-// clang-format off
inline const std::string&
Args::operator[](size_t i) const
-// clang-format on
{
return m_args[i];
}
-// clang-format off
inline std::string&
Args::operator[](size_t i)
-// clang-format on
{
return m_args[i];
}