summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2022-02-08 20:30:31 +0100
committerChristian Persch <chpe@src.gnome.org>2022-02-08 20:30:31 +0100
commit1e7be827e0fbfefddc8e785bdaac43dd353134e4 (patch)
tree0c266fac914533cdfa2c71ceb54264c334ae30ea
parent0718a9a7f9300b2526eddb0fc74e25eef34795ba (diff)
downloadvte-1e7be827e0fbfefddc8e785bdaac43dd353134e4.tar.gz
lib: Remove misplaced inline from function declaration
-rw-r--r--src/cxx-utils.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cxx-utils.hh b/src/cxx-utils.hh
index 3ce6d046..cc2b2215 100644
--- a/src/cxx-utils.hh
+++ b/src/cxx-utils.hh
@@ -51,7 +51,7 @@ void log_exception(char const* func = __builtin_FUNCTION(),
char const* filename = __builtin_FILE(),
int const line = __builtin_LINE()) noexcept;
#else
-inline void log_exception() noexcept;
+void log_exception() noexcept;
#endif
template <typename T, typename D, D func>