Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
a4f8bd4e
Commit
a4f8bd4e
authored
Jan 20, 2019
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump to C++17
parent
3e4c12cf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
Application.mk
native/jni/Application.mk
+1
-1
new.cpp
native/jni/utils/new.cpp
+4
-4
No files found.
native/jni/Application.mk
View file @
a4f8bd4e
APP_ABI := armeabi-v7a x86
APP_ABI := armeabi-v7a x86
APP_CFLAGS := -Oz -std=gnu11 \
APP_CFLAGS := -Oz -std=gnu11 \
-DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
-DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
APP_CPPFLAGS := -std=c++1
4
APP_CPPFLAGS := -std=c++1
7
APP_STL := c++_static
APP_STL := c++_static
APP_PLATFORM := android-16
APP_PLATFORM := android-16
...
...
native/jni/utils/new.cpp
View file @
a4f8bd4e
...
@@ -8,7 +8,7 @@ void* operator new(std::size_t s) { return malloc(s); }
...
@@ -8,7 +8,7 @@ void* operator new(std::size_t s) { return malloc(s); }
void
*
operator
new
[](
std
::
size_t
s
)
{
return
malloc
(
s
);
}
void
*
operator
new
[](
std
::
size_t
s
)
{
return
malloc
(
s
);
}
void
operator
delete
(
void
*
p
)
{
free
(
p
);
}
void
operator
delete
(
void
*
p
)
{
free
(
p
);
}
void
operator
delete
[](
void
*
p
)
{
free
(
p
);
}
void
operator
delete
[](
void
*
p
)
{
free
(
p
);
}
void
*
operator
new
(
std
::
size_t
s
,
const
std
::
nothrow_t
&
)
{
return
malloc
(
s
);
}
void
*
operator
new
(
std
::
size_t
s
,
const
std
::
nothrow_t
&
)
noexcept
{
return
malloc
(
s
);
}
void
*
operator
new
[](
std
::
size_t
s
,
const
std
::
nothrow_t
&
)
{
return
malloc
(
s
);
}
void
*
operator
new
[](
std
::
size_t
s
,
const
std
::
nothrow_t
&
)
noexcept
{
return
malloc
(
s
);
}
void
operator
delete
(
void
*
p
,
const
std
::
nothrow_t
&
)
{
free
(
p
);
}
void
operator
delete
(
void
*
p
,
const
std
::
nothrow_t
&
)
noexcept
{
free
(
p
);
}
void
operator
delete
[](
void
*
p
,
const
std
::
nothrow_t
&
)
{
free
(
p
);
}
void
operator
delete
[](
void
*
p
,
const
std
::
nothrow_t
&
)
noexcept
{
free
(
p
);
}
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