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:56 +0100
commit6d7502ad51ac35266d7770226475014e4d168584 (patch)
tree42c28cb3d4f7e9a49567ddb0f16d966edafe644c
parentd448111db00f3f198a984afa6e7b2a17d97ed856 (diff)
downloadvte-6d7502ad51ac35266d7770226475014e4d168584.tar.gz
lib: Remove misplaced inline from function declaration0.66.3
(cherry picked from commit 1e7be827e0fbfefddc8e785bdaac43dd353134e4)
-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>