Cuberite
A lightweight, fast and extensible game server for Minecraft
fmt.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifdef __clang__
4  #pragma clang diagnostic push
5  #pragma clang diagnostic ignored "-Wsign-conversion"
6  #pragma clang diagnostic ignored "-Wsigned-enum-bitfield"
7 #endif
8 
9 #include <fmt/format.h>
10 #include <fmt/printf.h>
11 
12 #ifdef __clang__
13  #pragma clang diagnostic pop
14 #endif
15