Commit 5188c062 authored by Paul's avatar Paul
Browse files

Fix broken include guards

parent 70f81961
#ifndef GUARD_RTGLIB_ARGUMENT_HPP #ifndef RTG_GUARD_RTGLIB_ARGUMENT_HPP
#define RTG_GUARD_RTGLIB_ARGUMENT_HPP #define RTG_GUARD_RTGLIB_ARGUMENT_HPP
#include <rtg/shape.hpp> #include <rtg/shape.hpp>
......
#ifndef GUARD_RTGLIB_FLOAT_EQUAL_HPP #ifndef RTG_GUARD_RTGLIB_FLOAT_EQUAL_HPP
#define RTG_GUARD_RTGLIB_FLOAT_EQUAL_HPP #define RTG_GUARD_RTGLIB_FLOAT_EQUAL_HPP
#include <algorithm> #include <algorithm>
......
#ifndef GUARD_RTGLIB_INSTRUCTION_HPP #ifndef RTG_GUARD_RTGLIB_INSTRUCTION_HPP
#define RTG_GUARD_RTGLIB_INSTRUCTION_HPP #define RTG_GUARD_RTGLIB_INSTRUCTION_HPP
#include <rtg/literal.hpp> #include <rtg/literal.hpp>
......
#ifndef GUARD_RTGLIB_LITERAL_HPP #ifndef RTG_GUARD_RTGLIB_LITERAL_HPP
#define RTG_GUARD_RTGLIB_LITERAL_HPP #define RTG_GUARD_RTGLIB_LITERAL_HPP
#include <rtg/shape.hpp> #include <rtg/shape.hpp>
......
#ifndef GUARD_RTGLIB_OPERAND_HPP #ifndef RTG_GUARD_RTGLIB_OPERAND_HPP
#define RTG_GUARD_RTGLIB_OPERAND_HPP #define RTG_GUARD_RTGLIB_OPERAND_HPP
#include <string> #include <string>
......
#ifndef GUARD_RTGLIB_PROGRAM_HPP #ifndef RTG_GUARD_RTGLIB_PROGRAM_HPP
#define RTG_GUARD_RTGLIB_PROGRAM_HPP #define RTG_GUARD_RTGLIB_PROGRAM_HPP
#include <list> #include <list>
......
#ifndef GUARD_RTGLIB_SHAPE_HPP #ifndef RTG_GUARD_RTGLIB_SHAPE_HPP
#define RTG_GUARD_RTGLIB_SHAPE_HPP #define RTG_GUARD_RTGLIB_SHAPE_HPP
#include <vector> #include <vector>
......
#ifndef GUARD_RTGLIB_STRINGUTILS_HPP #ifndef RTG_GUARD_RTGLIB_STRINGUTILS_HPP
#define RTG_GUARD_RTGLIB_STRINGUTILS_HPP #define RTG_GUARD_RTGLIB_STRINGUTILS_HPP
#include <algorithm> #include <algorithm>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <cstdlib> #include <cstdlib>
#include <iostream> #include <iostream>
#ifndef GUARD_TEST_TEST_HPP #ifndef RTG_GUARD_TEST_TEST_HPP
#define RTG_GUARD_TEST_TEST_HPP #define RTG_GUARD_TEST_TEST_HPP
inline void failed(const char* msg, const char* file, int line) inline void failed(const char* msg, const char* file, int line)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment