Skip to content

Commit

Permalink
[BUGFIX] Added missing include. Fixed Mingw compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jul 27, 2023
1 parent 28f5f1f commit fbead40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion paramkit/include/param.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#pragma once

#include <Windows.h>
#include <windows.h>

#include <iostream>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion paramkit/include/param_group.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#pragma once

#include <Windows.h>
#include <windows.h>

#include <iostream>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion paramkit/include/params.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#pragma once

#include <Windows.h>
#include <windows.h>

#include <iostream>
#include <string>
Expand Down
2 changes: 2 additions & 0 deletions paramkit/include/pk_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#include <map>
#include <set>

#include "strings_util.h"

#define GETNAME(x) (#x)

namespace paramkit {
Expand Down

0 comments on commit fbead40

Please sign in to comment.