PixarAnimationStudios / OpenUSD

Universal Scene Description

Home Page:http://www.openusd.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build script fails on Windows 10 - Visual Studio 2022 - Pulled from master branch

rickomax opened this issue · comments

b2_settings.append(f"define=BOOST_UNORDERED_HAVE_PIECEWISE_CONSTRUCT=0")

This line fails when compiling on my end (syntax error). This issue might also affect others.
Making the "f-string" into a standard string fixes the issue. Since there are no arguments on this "f-string", a standard string could safely replace it.

b2_settings.append("define=BOOST_UNORDERED_HAVE_PIECEWISE_CONSTRUCT=0")
Simple fix.