Couple of include guard cleanups

This commit is contained in:
Jason Turner 2011-03-29 09:28:35 -06:00
parent 8ecd3a084b
commit a91c66d286
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
// and Jason Turner (jason@emptycrate.com) // and Jason Turner (jason@emptycrate.com)
// http://www.chaiscript.com // http://www.chaiscript.com
#ifndef __function_call_hpp__ #ifndef CHAISCRIPT_FUNCTION_CALL_HPP_
#define __function_call_hpp__ #define CHAISCRIPT_FUNCTION_CALL_HPP_
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/bind.hpp> #include <boost/bind.hpp>

View File

@ -4,8 +4,8 @@
// and Jason Turner (jason@emptycrate.com) // and Jason Turner (jason@emptycrate.com)
// http://www.chaiscript.com // http://www.chaiscript.com
#ifndef CHAISCRIPT_UTILITY_UTILITY_HPP__ #ifndef CHAISCRIPT_UTILITY_UTILITY_HPP_
#define CHAISCRIPT_UTILITY_UTILITY_HPP__ #define CHAISCRIPT_UTILITY_UTILITY_HPP_
#include "../chaiscript.hpp" #include "../chaiscript.hpp"
#include <boost/preprocessor.hpp> #include <boost/preprocessor.hpp>