diff options
author | 2021-04-28 22:34:07 -0400 | |
---|---|---|
committer | 2021-04-28 22:34:07 -0400 | |
commit | e229977b964ef69a7c6c656df453ccaf0a045f19 (patch) | |
tree | e2cf829ffc5e8e40b6dbbd4302cdfb059771546b /src/lib/formats/fsmgr.cpp | |
parent | 07dfaeefa61703689528fde9bed45c649d0c8599 (diff) |
fsmgr: temp hack to fix Clang compile [R. Belmont]
Diffstat (limited to 'src/lib/formats/fsmgr.cpp')
-rw-r--r-- | src/lib/formats/fsmgr.cpp | 1 |
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(""); } |