Skip to content

Commit

Permalink
kram - fix win error from clang-format moving windows.h later
Browse files Browse the repository at this point in the history
  • Loading branch information
alecazam committed Oct 13, 2024
1 parent 63f779b commit 63a1021
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libkram/kram/TaskSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
#include <pthread/qos.h>
#include <sys/sysctl.h>
#elif KRAM_WIN
#include <processthreadsapi.h>
// annoying thata windows.h has to be ordered first
// clang-format off
#include <windows.h>
// clang-format off
#include <processthreadsapi.h>
#elif KRAM_ANDROID
#include <sys/resource.h>
#else
Expand Down

0 comments on commit 63a1021

Please sign in to comment.