Skip to content

Commit

Permalink
Update windows build to work with VS 2022 v17.11
Browse files Browse the repository at this point in the history
Summary: Update windows build to work with VS 2022 v17.11 by increasing upper bound on supported VC compiler version (1942)

Reviewed By: leapally

Differential Revision:
D63351494

Privacy Context Container: L1191897

fbshipit-source-id: 5c01a99e617799d88ceb180064651a1d4455908f
  • Loading branch information
thorntondr authored and facebook-github-bot committed Sep 25, 2024
1 parent 771ccb5 commit 1486322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/ocean/base/Build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ std::string Build::compilerVersion()
#elif OCEAN_MSC_VERSION >= 1920 && OCEAN_MSC_VERSION < 1930
// Visual Studio 2019
return std::string("vc142");
#elif OCEAN_MSC_VERSION >= 1930 && OCEAN_MSC_VERSION < 1940
#elif OCEAN_MSC_VERSION >= 1930 && OCEAN_MSC_VERSION < 1942
return std::string("vc143");
#else
#error Missing implementation
Expand Down

0 comments on commit 1486322

Please sign in to comment.