Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
a83bf97b
Commit
a83bf97b
authored
May 27, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
android/LogListener: un-inline the constructor
parent
262e1957
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
LogListener.cxx
src/android/LogListener.cxx
+5
-0
LogListener.hxx
src/android/LogListener.hxx
+1
-2
No files found.
src/android/LogListener.cxx
View file @
a83bf97b
...
...
@@ -23,6 +23,11 @@
#include "util/AllocatedString.hxx"
#include "util/FormatString.hxx"
LogListener
::
LogListener
(
JNIEnv
*
env
,
jobject
obj
)
noexcept
:
Java
::
GlobalObject
(
env
,
obj
)
{
}
void
LogListener
::
OnLog
(
JNIEnv
*
env
,
int
priority
,
const
char
*
fmt
,
...)
const
noexcept
...
...
src/android/LogListener.hxx
View file @
a83bf97b
...
...
@@ -24,8 +24,7 @@
class
LogListener
:
public
Java
::
GlobalObject
{
public
:
LogListener
(
JNIEnv
*
env
,
jobject
obj
)
noexcept
:
Java
::
GlobalObject
(
env
,
obj
)
{}
LogListener
(
JNIEnv
*
env
,
jobject
obj
)
noexcept
;
void
OnLog
(
JNIEnv
*
env
,
int
priority
,
const
char
*
fmt
,
...)
const
noexcept
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment