Files
Towards/external/tracy/server/TracySort.hpp
T

11 lines
148 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#ifndef __TRACYSORT_HPP__
#define __TRACYSORT_HPP__
#ifdef __EMSCRIPTEN__
# include "tracy_pdqsort.h"
#else
# include <ppqsort.h>
#endif
#endif