MCPcopy Create free account
hub / github.com/build-cpp/cmkr / space_error_check

Function space_error_check

src/cmake_generator.cpp:61–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61static std::string space_error_check(const std::string &str) {
62 auto pos = str.find_last_of(' ');
63 if (pos != std::string::npos)
64 return quoted(str) + " <------ !space(s)";
65 else
66 return quoted(str);
67}
68
69static std::vector<fs::path> expand_cmake_path(const fs::path &source_path, const fs::path &toml_dir, bool is_root_project) {
70 auto is_subdir = [](fs::path p, const fs::path &root) {

Callers 1

generate_cmakeFunction · 0.85

Calls 1

quotedFunction · 0.85

Tested by

no test coverage detected