FEX/Source/Common/EnvironmentLoader.cpp
Paulo Matos 2b4ec88dae Whole-tree reformat
This follows discussions from #3413.
Followup commits add clang-format file, script and blame ignore lists.
2024-04-12 16:26:02 +02:00

12 lines
215 B
C++

// SPDX-License-Identifier: MIT
#include <string_view>
namespace FEX::EnvLoader {
using string = std::string;
using string_view = std::string_view;
void Load(char* const envp[]) {}
} // namespace FEX::EnvLoader