diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-06-12 10:00:06 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-06-18 12:05:10 +0200 |
commit | a7bdda7bd9520238ca3a588a33fc75beeef3c488 (patch) | |
tree | e74624591e032b6726e27f4e8aa071c2b4ce8d97 /src/buildtool/main/analyse.cpp | |
parent | 7576e201023f76b017eae1820461bdab094bd290 (diff) | |
download | justbuild-a7bdda7bd9520238ca3a588a33fc75beeef3c488.tar.gz |
Use RemoteServeConfig functionality via Instance()
...to track changes during refactoring easier.
Diffstat (limited to 'src/buildtool/main/analyse.cpp')
-rw-r--r-- | src/buildtool/main/analyse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/main/analyse.cpp b/src/buildtool/main/analyse.cpp index d93246f1..7acb33b6 100644 --- a/src/buildtool/main/analyse.cpp +++ b/src/buildtool/main/analyse.cpp @@ -146,7 +146,7 @@ namespace Target = BuildMaps::Target; // we should only report served export targets if a serve endpoint exists bool has_serve{false}; #ifndef BOOTSTRAP_BUILD_TOOL - if (RemoteServeConfig::RemoteAddress()) { + if (RemoteServeConfig::Instance().RemoteAddress()) { has_serve = true; } #endif // BOOTSTRAP_BUILD_TOOL |