You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tracy/server/TracySort.hpp

11 lines
148 B
C++

#ifndef __TRACYSORT_HPP__
#define __TRACYSORT_HPP__
#ifdef __EMSCRIPTEN__
# include "tracy_pdqsort.h"
#else
# include <ppqsort.h>
#endif
#endif