Explorar o código

microprofile: Use std::abs

Using the global-namespace C function will cause the wrong
overload to get picked
Sam Spilsbury %!s(int64=10) %!d(string=hai) anos
pai
achega
aacc3a4a59
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      externals/microprofile/microprofileui.h

+ 1 - 1
externals/microprofile/microprofileui.h

@@ -879,7 +879,7 @@ void MicroProfileDrawDetailedBars(uint32_t nWidth, uint32_t nHeight, int nBaseY,
     static int64_t nRefCpu = 0, nRefGpu = 0;
     if(MicroProfileGetGpuTickReference(&nTickReferenceCpu, &nTickReferenceGpu))
     {
-        if(0 == nRefCpu || abs(nRefCpu-nBaseTicksCpu) > abs(nTickReferenceCpu-nBaseTicksCpu))
+        if(0 == nRefCpu || std::abs(nRefCpu-nBaseTicksCpu) > std::abs(nTickReferenceCpu-nBaseTicksCpu))
         {
             nRefCpu = nTickReferenceCpu;
             nRefGpu = nTickReferenceGpu;