Skip to content

Commit 6dc36ec

Browse files
committed
Still trying to fix windows profiler build job
1 parent 8d6930f commit 6dc36ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

profiler/src/ProfilerEngine/Datadog.Profiler.Native/CrashReporting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ std::vector<StackFrame> CrashReporting::MergeFrames(const std::vector<StackFrame
360360
std::vector<StackFrame> result;
361361
// it's safe here to not use nativeFrames.size() + managedFrames.size()
362362
// because the managed frames should be a subset of the native frames
363-
result.reserve(std::max(nativeFrames.size(), managedFrames.size()));
363+
result.reserve((std::max)(nativeFrames.size(), managedFrames.size()));
364364

365365
auto nativeIt = nativeFrames.rbegin();
366366
auto managedIt = managedFrames.rbegin();

0 commit comments

Comments
 (0)