From a67cb2a439b21c3f03a1f9e693116b3041640bbd Mon Sep 17 00:00:00 2001 From: arunmu Date: Mon, 21 Mar 2016 18:07:05 +0530 Subject: [PATCH] Issue pointed by elfring: Non standard header guard --- subprocess.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subprocess.hpp b/subprocess.hpp index 81a8948..7b24564 100755 --- a/subprocess.hpp +++ b/subprocess.hpp @@ -31,8 +31,8 @@ Documentation for C++ subprocessing libraray. @version 1.0.0 */ -#ifndef __SUBPROCESS_HPP_ -#define __SUBPROCESS_HPP_ +#ifndef SUBPROCESS_HPP +#define SUBPROCESS_HPP #include #include @@ -1621,4 +1621,4 @@ OutBuffer pipeline(Args&&... args) }; -#endif // __SUBPROCESS_HPP_ +#endif // SUBPROCESS_HPP