From 0fb33e9c094bffde737c7a73cd5ccce4d7cbae33 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 13 Nov 2018 12:52:03 -0800 Subject: [PATCH] Mark git getters inline --- include/stratosphere/version_check.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/stratosphere/version_check.hpp b/include/stratosphere/version_check.hpp index 13f1b1c6..598b7e64 100644 --- a/include/stratosphere/version_check.hpp +++ b/include/stratosphere/version_check.hpp @@ -67,13 +67,13 @@ static inline void CheckAtmosphereVersion(u32 expected_major, u32 expected_minor #define CURRENT_ATMOSPHERE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO #ifdef ATMOSPHERE_GIT_BRANCH -static const char *GetAtmosphereGitBranch() { +static inline const char *GetAtmosphereGitBranch() { return ATMOSPHERE_GIT_BRANCH; } #endif #ifdef ATMOSPHERE_GIT_REV -static const char *GetAtmosphereGitRevision() { +static inline const char *GetAtmosphereGitRevision() { return ATMOSPHERE_GIT_REV; } #endif