Commit a83bf97b authored by Max Kellermann's avatar Max Kellermann

android/LogListener: un-inline the constructor

parent 262e1957
...@@ -23,6 +23,11 @@ ...@@ -23,6 +23,11 @@
#include "util/AllocatedString.hxx" #include "util/AllocatedString.hxx"
#include "util/FormatString.hxx" #include "util/FormatString.hxx"
LogListener::LogListener(JNIEnv *env, jobject obj) noexcept
:Java::GlobalObject(env, obj)
{
}
void void
LogListener::OnLog(JNIEnv *env, int priority, LogListener::OnLog(JNIEnv *env, int priority,
const char *fmt, ...) const noexcept const char *fmt, ...) const noexcept
......
...@@ -24,8 +24,7 @@ ...@@ -24,8 +24,7 @@
class LogListener : public Java::GlobalObject { class LogListener : public Java::GlobalObject {
public: public:
LogListener(JNIEnv *env, jobject obj) noexcept LogListener(JNIEnv *env, jobject obj) noexcept;
:Java::GlobalObject(env, obj) {}
void OnLog(JNIEnv *env, int priority, void OnLog(JNIEnv *env, int priority,
const char *fmt, ...) const noexcept; const char *fmt, ...) const noexcept;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment