fix: LA library bug workaround

Blocked by BobSteagall/wg21#77
This commit is contained in:
Mateusz Pusz
2024-07-11 19:18:28 +02:00
parent a70ef1ebc3
commit 175fd04c3a
3 changed files with 4 additions and 3 deletions

View File

@@ -178,7 +178,8 @@ class MPUnitsConan(ConanFile):
@property
def _skip_la(self):
return bool(self.conf.get("user.mp-units.build:skip_la", default=False))
# broken until https://github.com/BobSteagall/wg21/issues/77 is fixed
return bool(self.conf.get("user.mp-units.build:skip_la", default=True))
@property
def _run_clang_tidy(self):