Files
cpp-project-template/third_party/tracy/server/TracySort.hpp

11 lines
148 B
C++
Raw Normal View History

2025-08-25 15:24:22 +08:00
#ifndef __TRACYSORT_HPP__
#define __TRACYSORT_HPP__
#ifdef __EMSCRIPTEN__
# include "tracy_pdqsort.h"
#else
# include <ppqsort.h>
#endif
#endif