diff options
author | flow <thiagodonato300@gmail.com> | 2022-04-20 18:45:39 -0300 |
---|---|---|
committer | flow <flowlnlnln@gmail.com> | 2022-05-23 14:43:09 -0300 |
commit | 96e36f060443cbfa6d58df2adca3c8605851b4a3 (patch) | |
tree | 9d4c1d04e33695e75c9d45e87a79562543ef920c /launcher/modplatform/ModIndex.cpp | |
parent | a99858c64d275303a9f91912a2732746ef6a3c8a (diff) | |
download | PrismLauncher-96e36f060443cbfa6d58df2adca3c8605851b4a3.tar.gz PrismLauncher-96e36f060443cbfa6d58df2adca3c8605851b4a3.tar.bz2 PrismLauncher-96e36f060443cbfa6d58df2adca3c8605851b4a3.zip |
refactor: make mod metadata presence (or lack of) easier to find out
Diffstat (limited to 'launcher/modplatform/ModIndex.cpp')
-rw-r--r-- | launcher/modplatform/ModIndex.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/modplatform/ModIndex.cpp b/launcher/modplatform/ModIndex.cpp index eb8be992..b3c057fb 100644 --- a/launcher/modplatform/ModIndex.cpp +++ b/launcher/modplatform/ModIndex.cpp @@ -10,6 +10,7 @@ auto ProviderCapabilities::name(Provider p) -> const char* case Provider::FLAME: return "curseforge"; } + return {}; } auto ProviderCapabilities::hashType(Provider p) -> QString { @@ -19,6 +20,7 @@ auto ProviderCapabilities::hashType(Provider p) -> QString case Provider::FLAME: return "murmur2"; } + return {}; } } // namespace ModPlatform |