summaryrefslogtreecommitdiff
path: root/libs/JSystem/src/JGadget/std-string.cpp
blob: 9b7206b3aebcdd13bf6b0baed266c0ed493d67a3 (plain)
1
2
3
4
5
6
7
8
9
#include "JSystem/JSystem.h" // IWYU pragma: keep

#include <algorithm>

static void dummy() {
    u32 a = 0;
    u32 b = 1;
    std::min<u32>(a, b);
}