Warnings: Add UNREACHABLE macros to switches that contemplate all possible values.
This commit is contained in:
		| @@ -90,6 +90,8 @@ std::u16string Path::AsU16Str() const { | ||||
|         LOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!"); | ||||
|         return {}; | ||||
|     } | ||||
|  | ||||
|     UNREACHABLE(); | ||||
| } | ||||
|  | ||||
| std::vector<u8> Path::AsBinary() const { | ||||
|   | ||||
| @@ -8,6 +8,7 @@ | ||||
| #include <string> | ||||
| #include <utility> | ||||
| #include <boost/smart_ptr/intrusive_ptr.hpp> | ||||
| #include "common/assert.h" | ||||
| #include "common/common_types.h" | ||||
|  | ||||
| namespace Kernel { | ||||
| @@ -84,6 +85,8 @@ public: | ||||
|         case HandleType::ClientSession: | ||||
|             return false; | ||||
|         } | ||||
|  | ||||
|         UNREACHABLE(); | ||||
|     } | ||||
|  | ||||
| public: | ||||
|   | ||||
| @@ -74,9 +74,9 @@ struct Regs { | ||||
|         case PixelFormat::RGB5A1: | ||||
|         case PixelFormat::RGBA4: | ||||
|             return 2; | ||||
|         default: | ||||
|             UNIMPLEMENTED(); | ||||
|         } | ||||
|  | ||||
|         UNREACHABLE(); | ||||
|     } | ||||
|  | ||||
|     INSERT_PADDING_WORDS(0x4); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user