aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-dataloader/detail/Warnings.hpp
diff options
context:
space:
mode:
author George L. Albany <Megacake1234@gmail.com>2024-06-18 19:43:20 +0200
committer GitHub <noreply@github.com>2024-06-18 19:43:20 +0200
commit8b623bf4087aa360842ad31145d4ab6946cee9aa (patch)
treef15ebc47d6bf370031af28e4bb4814ae30ef46e1 /src/openvic-dataloader/detail/Warnings.hpp
parent7b521d6023113372cf6b02e562828273c4040f0e (diff)
parentb0c3ba3f91926b0c95625bdbf4aab69269130b13 (diff)
Merge pull request #46 from OpenVicProject/fix/char-detection
Add runtime encoding detection and conversion
Diffstat (limited to 'src/openvic-dataloader/detail/Warnings.hpp')
-rw-r--r--src/openvic-dataloader/detail/Warnings.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/openvic-dataloader/detail/Warnings.hpp b/src/openvic-dataloader/detail/Warnings.hpp
index ab718bc..3a0a239 100644
--- a/src/openvic-dataloader/detail/Warnings.hpp
+++ b/src/openvic-dataloader/detail/Warnings.hpp
@@ -1,18 +1,17 @@
#pragma once
+#include <string>
#include <string_view>
-#include <openvic-dataloader/ParseWarning.hpp>
-
namespace ovdl::v2script::warnings {
inline const std::string make_utf8_warning(std::string_view file_path) {
- constexpr std::string_view message_suffix = "This may cause problems. Prefer Windows-1252 encoding.";
+ constexpr std::string_view message_suffix = "This may cause problems. Prefer Windows-1252 encoding:";
std::string message;
if (file_path.empty()) {
- message = "Buffer is a UTF-8 encoded string. " + std::string(message_suffix);
+ message = "Buffer is UTF-8 encoded. " + std::string(message_suffix);
} else {
- message = "File '" + std::string(file_path) + "' is a UTF-8 encoded file. " + std::string(message_suffix);
+ message = "File is UTF-8 encoded. " + std::string(message_suffix);
}
return message;