diff options
author | Hop311 <hop3114@gmail.com> | 2023-05-24 10:14:41 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-05-24 10:14:41 +0200 |
commit | d6db91738ceee5cce9e7b7efc32bec89a83fa790 (patch) | |
tree | 2ba58efbe0ff3cfdc6f73b7a9e0bfab399d5e0d3 /extension/src/Utilities.hpp | |
parent | ac36a373139e3e815f70720b37d4ffc8d9062df9 (diff) |
Date fix + string fix + Logger queue
Diffstat (limited to 'extension/src/Utilities.hpp')
-rw-r--r-- | extension/src/Utilities.hpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/extension/src/Utilities.hpp b/extension/src/Utilities.hpp index 16193e8..75e873f 100644 --- a/extension/src/Utilities.hpp +++ b/extension/src/Utilities.hpp @@ -8,12 +8,8 @@ namespace OpenVic { - inline char const* godot_to_c_string(godot::String const& str) { - return str.ascii().get_data(); - } - inline std::string godot_to_std_string(godot::String const& str) { - return godot_to_c_string(str); + return str.ascii().get_data(); } inline godot::String std_to_godot_string(std::string const& str) { |