Skip to content

Commit

Permalink
Windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzoDK committed Sep 15, 2021
1 parent 4a57914 commit 392a485
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pkgname="rpcommon"
provides=('rpcommon')
conflicts=('rpcommon-dev')
pkgver=0.1.12
pkgver=0.1.13
pkgrel=1
arch=('any')
pkgdesc="A compilation of small and common functions to make the dev life easier"
Expand Down
2 changes: 1 addition & 1 deletion RPCommon/RPCommon.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#if defined(win32) || defined(win64)
#if defined(WIN32) || defined(WIN64)
#include <string>
#endif
#include "strreverse.h"
Expand Down
2 changes: 1 addition & 1 deletion RPCommon/strreverse.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <iostream>
#pragma once
#include <iostream>
inline static std::string ReverseString(std::string s)
{
std::string tmp = "";
Expand Down

0 comments on commit 392a485

Please sign in to comment.