Skip to content

Commit

Permalink
c4group_ng: Fix includes errorneously being inside a non-_WIN32 block
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgen301 committed Nov 2, 2024
1 parent b26e282 commit c33428c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/c4group_ng.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
#include <C4Update.h>
#include <C4Config.h>

#include <format>
#include <print>
#include <string_view>

#include <fmt/printf.h>

#ifdef _WIN32
#include "StdRegistry.h"

Expand All @@ -48,12 +54,6 @@
#define getch _getch
#else

#include <format>
#include <print>
#include <string_view>

#include <fmt/printf.h>

// from http://cboard.cprogramming.com/archive/index.php/t-27714.html
#include <stdio.h>
#include <termios.h>
Expand Down

0 comments on commit c33428c

Please sign in to comment.