android/Environment: add noexcept
This commit is contained in:
@@ -27,17 +27,17 @@
|
||||
class AllocatedPath;
|
||||
|
||||
namespace Environment {
|
||||
void Initialise(JNIEnv *env);
|
||||
void Deinitialise(JNIEnv *env);
|
||||
void Initialise(JNIEnv *env) noexcept;
|
||||
void Deinitialise(JNIEnv *env) noexcept;
|
||||
|
||||
/**
|
||||
* Determine the mount point of the external SD card.
|
||||
*/
|
||||
gcc_pure
|
||||
AllocatedPath getExternalStorageDirectory();
|
||||
AllocatedPath getExternalStorageDirectory() noexcept;
|
||||
|
||||
gcc_pure
|
||||
AllocatedPath getExternalStoragePublicDirectory(const char *type);
|
||||
AllocatedPath getExternalStoragePublicDirectory(const char *type) noexcept;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user