summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asmjit/test/performancetimer.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asmjit/test/performancetimer.h')
-rw-r--r--3rdparty/asmjit/test/performancetimer.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/3rdparty/asmjit/test/performancetimer.h b/3rdparty/asmjit/test/performancetimer.h
index baa0479fc34..c7a8ebe5d18 100644
--- a/3rdparty/asmjit/test/performancetimer.h
+++ b/3rdparty/asmjit/test/performancetimer.h
@@ -30,12 +30,4 @@ public:
}
};
-static inline double mbps(double duration, uint64_t outputSize) noexcept {
- if (duration == 0)
- return 0.0;
-
- double bytesTotal = double(outputSize);
- return (bytesTotal * 1000) / (duration * 1024 * 1024);
-}
-
#endif // PERFORMANCETIMER_H_INCLUDED