diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-16 22:25:08 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-16 22:25:08 -0500 |
commit | 53c4dcf374c66f1e9190f5a62a52d02fe11a69e6 (patch) | |
tree | ee40277c36fdba58fb06aca87b8ffa67ab5f8558 /source/libfud.cpp | |
parent | f3ac764684c64fbdd2094853a80b23e570cd5d9c (diff) |
First crack at allocators.
Diffstat (limited to 'source/libfud.cpp')
-rw-r--r-- | source/libfud.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libfud.cpp b/source/libfud.cpp index cec544d..538d3a9 100644 --- a/source/libfud.cpp +++ b/source/libfud.cpp @@ -55,7 +55,7 @@ Result<String, FudStatus> getEnv(const char* name) return RetType::error(envVarResult); } - return RetType::okay(envVarResult); + return RetType::okay(std::move(envVarResult)); } } // namespace fud |