JANITORIAL: Add include guard for shader.h

This commit is contained in:
Dries Harnie 2013-07-14 15:24:48 +02:00 committed by Joel Teichroeb
parent df481915f8
commit 5abd95957a

View File

@ -20,6 +20,9 @@
*
*/
#ifndef GRAPHICS_SHADER_H
#define GRAPHICS_SHADER_H
#include "common/file.h"
#include "common/array.h"
@ -146,3 +149,5 @@ private:
};
}
#endif