diff options
author | bunnei <bunneidev@gmail.com> | 2015-02-23 07:23:15 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-02-23 07:23:15 +0100 |
commit | 50a0c4f14fc0c6df4db63a5593c6ff477736034c (patch) | |
tree | 3ec4860e931eb307faf6cdd06504a82baad95e00 /src/common | |
parent | Merge pull request #598 from Subv/dpt (diff) | |
parent | Added information reporting from ThrowFatalError (diff) | |
download | yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.gz yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.bz2 yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.lz yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.xz yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.zst yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_funcs.h | 2 | ||||
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index bc296ed3e..d56156e4a 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -14,8 +14,6 @@ #define SLEEP(x) usleep(x*1000) #endif -template <bool> struct CompileTimeAssert; -template<> struct CompileTimeAssert<true> {}; #define b2(x) ( (x) | ( (x) >> 1) ) #define b4(x) ( b2(x) | ( b2(x) >> 2) ) diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 8fee20a83..7c1010b22 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -33,6 +33,7 @@ static std::shared_ptr<Logger> global_logger; CLS(Service) \ SUB(Service, SRV) \ SUB(Service, FS) \ + SUB(Service, ERR) \ SUB(Service, APT) \ SUB(Service, GSP) \ SUB(Service, AC) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 6c5ca3968..7b67b3c07 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -53,6 +53,7 @@ enum class Class : ClassType { /// should have its own subclass. Service_SRV, ///< The SRV (Service Directory) implementation Service_FS, ///< The FS (Filesystem) service implementation + Service_ERR, ///< The ERR (Error) port implementation Service_APT, ///< The APT (Applets) service Service_GSP, ///< The GSP (GPU control) service Service_AC, ///< The AC (WiFi status) service |