From dea52a25d2e0e800939e171c6b5ea39d34693c29 Mon Sep 17 00:00:00 2001 From: Paul Molodowitch Date: Tue, 24 Jan 2023 12:55:07 -0800 Subject: [PATCH] [work] add missing include for std::max was getting errors when building without python on windows VS2022 - I think python and the older boost version were both bringing in the header; without either, it errored. --- pxr/base/work/testenv/testWorkThreadLimits.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pxr/base/work/testenv/testWorkThreadLimits.cpp b/pxr/base/work/testenv/testWorkThreadLimits.cpp index 9ab4b7dc1e..414bba2c02 100644 --- a/pxr/base/work/testenv/testWorkThreadLimits.cpp +++ b/pxr/base/work/testenv/testWorkThreadLimits.cpp @@ -29,6 +29,7 @@ #include "pxr/base/tf/getenv.h" #include "pxr/base/tf/staticData.h" +#include #include #include