From 5418bb49fbe4767b3d7631093038c948e434e69f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 24 Apr 2019 14:49:24 +0200 Subject: [PATCH] android/Context: add `noexcept` --- src/android/Context.cxx | 4 ++-- src/android/Context.hxx | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/android/Context.cxx b/src/android/Context.cxx index c8fcd69db..f73026e94 100644 --- a/src/android/Context.cxx +++ b/src/android/Context.cxx @@ -1,5 +1,5 @@ /* - * Copyright 2003-2018 The Music Player Daemon Project + * Copyright 2003-2019 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -23,7 +23,7 @@ #include "fs/AllocatedPath.hxx" AllocatedPath -Context::GetCacheDir(JNIEnv *env) const +Context::GetCacheDir(JNIEnv *env) const noexcept { assert(env != nullptr); diff --git a/src/android/Context.hxx b/src/android/Context.hxx index 6cd75f062..8d65ae6e2 100644 --- a/src/android/Context.hxx +++ b/src/android/Context.hxx @@ -1,5 +1,5 @@ /* - * Copyright 2003-2018 The Music Player Daemon Project + * Copyright 2003-2019 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -26,10 +26,11 @@ class AllocatedPath; class Context : public Java::GlobalObject { public: - Context(JNIEnv *env, jobject obj):Java::GlobalObject(env, obj) {} + Context(JNIEnv *env, jobject obj) noexcept + :Java::GlobalObject(env, obj) {} gcc_pure - AllocatedPath GetCacheDir(JNIEnv *env) const; + AllocatedPath GetCacheDir(JNIEnv *env) const noexcept; }; #endif