Index: src/libchcore/RoundingFunctions.h =================================================================== diff -u -N -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 -r4fe995b304ea342b50293f92d3c1992b43b820f7 --- src/libchcore/RoundingFunctions.h (.../RoundingFunctions.h) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) +++ src/libchcore/RoundingFunctions.h (.../RoundingFunctions.h) (revision 4fe995b304ea342b50293f92d3c1992b43b820f7) @@ -19,8 +19,6 @@ #ifndef __ROUNDINGFUNCTIONS_H__ #define __ROUNDINGFUNCTIONS_H__ -#include "libchcore.h" - namespace chcore { template T RoundUp(T number, T roundValue) { return ((number + roundValue - 1) & ~(roundValue - 1)); }