diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-17 18:57:07 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-17 18:57:07 +0300 |
| commit | e7ae5b72e4dd261f7e2fa0bff56fe1971939da2b (patch) | |
| tree | a3d64a04af8504159712919ae3afe0cc47f4e3c4 /src/renderer.cpp | |
| parent | a47b32efbb616c9789645a4a8f53718178c76f01 (diff) | |
Remove spdlog as a dependency.
Closes #19.
Diffstat (limited to 'src/renderer.cpp')
| -rw-r--r-- | src/renderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.cpp b/src/renderer.cpp index 31e5c51..b8303f5 100644 --- a/src/renderer.cpp +++ b/src/renderer.cpp @@ -383,7 +383,7 @@ Renderer::GetNiceTicks(double v_min, double v_max, const std::string& v_unit, un } iteration++; - } while (iteration < MAXIMUM_ITERATIONS); /* maybe we should spdlog::warn() if we reach max iterations? */ + } while (iteration < MAXIMUM_ITERATIONS); /* maybe we should issue warning if we reach max iterations? */ /* find the first nice value */ double fval = v_min / factor; |
