summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-04-28 22:34:07 -0400
committer arbee <rb6502@users.noreply.github.com>2021-04-28 22:34:07 -0400
commite229977b964ef69a7c6c656df453ccaf0a045f19 (patch)
treee2cf829ffc5e8e40b6dbbd4302cdfb059771546b
parent07dfaeefa61703689528fde9bed45c649d0c8599 (diff)
fsmgr: temp hack to fix Clang compile [R. Belmont]
-rw-r--r--src/lib/formats/fsmgr.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/formats/fsmgr.cpp b/src/lib/formats/fsmgr.cpp
index 6423d523300..627b4865b9c 100644
--- a/src/lib/formats/fsmgr.cpp
+++ b/src/lib/formats/fsmgr.cpp
@@ -217,5 +217,6 @@ std::string fs_meta_to_string(fs_meta_type type, const fs_meta &m)
case fs_meta_type::flag: return std::get<bool>(m) ? "t" : "f";
case fs_meta_type::date: abort();
}
+ return std::string("");
}