numeric setting value display fix

This commit is contained in:
MihailRis
2024-04-28 19:03:54 +03:00
parent c3b5576c02
commit 788bd6bf0f
8 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#include "command_line.h"
#include "command_line.hpp"
#include <filesystem>
@@ -1,5 +1,5 @@
#ifndef UTIL_COMMAND_LINE_H_
#define UTIL_COMMAND_LINE_H_
#ifndef UTIL_COMMAND_LINE_HPP_
#define UTIL_COMMAND_LINE_HPP_
#include <string>
#include <iostream>
@@ -35,7 +35,7 @@ public:
}
};
/* @return false if engine start can*/
extern bool parse_cmdline(int argc, char** argv, EnginePaths& paths);
/// @return false if engine start can
bool parse_cmdline(int argc, char** argv, EnginePaths& paths);
#endif // UTIL_COMMAND_LINE_H_
#endif // UTIL_COMMAND_LINE_HPP_
+1
View File
@@ -197,6 +197,7 @@ void util::trim(std::string &s) {
std::string util::to_string(double x) {
std::stringstream ss;
ss << std::setprecision(6);
ss << x;
return ss.str();
}