mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 04:29:04 +03:00
chore: cleanup the ui
This commit is contained in:
@@ -64,7 +64,7 @@ std::map<std::string, value_type> toml_file::get_table(const std::string §io
|
||||
else if (auto d = val.value<double>())
|
||||
result[std::string(p.first.str())] = static_cast<uint32_t>(*d);
|
||||
else
|
||||
result[std::string(p.first.str())] = {}; // fallback for unsupported types
|
||||
result[std::string(p.first.str())] = {};
|
||||
}
|
||||
|
||||
return result;
|
||||
|
||||
@@ -50,7 +50,6 @@ std::filesystem::path normalize_path(const std::string &path)
|
||||
{
|
||||
std::string expanded = expand_user(path);
|
||||
std::filesystem::path fs_path(expanded);
|
||||
// lexically_normal() resolves . and .. and normalizes separators
|
||||
return fs_path.lexically_normal();
|
||||
}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
namespace clrsync::core
|
||||
{
|
||||
|
||||
const std::string GIT_SEMVER = "0.1.4+git.g899a5d5";
|
||||
const std::string GIT_SEMVER = "0.1.4+git.gb4ca5e1";
|
||||
|
||||
const std::string version_string();
|
||||
} // namespace clrsync::core
|
||||
|
||||
Reference in New Issue
Block a user