Skip to content

Commit

Permalink
Avoid identically named source files - some build systems have proble…
Browse files Browse the repository at this point in the history
…ms with it, even if CMake have none (headermaps in XCode, shared intermediate folder in Visual Studio)
  • Loading branch information
Eugene Golushkov committed Dec 18, 2024
1 parent 9dee005 commit 75801f3
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef _OgreTagPoint_H_
#define _OgreTagPoint_H_
#ifndef _OgreTagPoint2_H_
#define _OgreTagPoint2_H_

#include "OgreSceneNode.h"

Expand Down
2 changes: 1 addition & 1 deletion OgreMain/src/Animation/OgreBone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ THE SOFTWARE.

#include "Animation/OgreBone.h"

#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"
#include "Math/Array/OgreBoneMemoryManager.h"
#include "Math/Array/OgreBooleanMask.h"
#include "Math/Array/OgreKfTransform.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ THE SOFTWARE.
*/
#include "OgreStableHeaders.h"

#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"

#include "Animation/OgreBone.h"
#include "Math/Array/OgreBooleanMask.h"
Expand Down
2 changes: 1 addition & 1 deletion OgreMain/src/OgreSceneManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ THE SOFTWARE.

#include "Animation/OgreSkeletonDef.h"
#include "Animation/OgreSkeletonInstance.h"
#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"
#include "Compositor/OgreCompositorShadowNode.h"
#include "Compositor/Pass/PassScene/OgreCompositorPassSceneDef.h"
#include "Math/Array/OgreBooleanMask.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "Animation/OgreSkeletonAnimation.h"
#include "Animation/OgreSkeletonInstance.h"
#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"

#include "OgreCamera.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "Animation/OgreSkeletonAnimation.h"
#include "Animation/OgreSkeletonInstance.h"
#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"

#include "OgreCamera.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "Animation/OgreSkeletonAnimation.h"
#include "Animation/OgreSkeletonInstance.h"
#include "Animation/OgreTagPoint.h"
#include "Animation/OgreTagPoint2.h"

#include "OgreHlmsPbs.h"
#include "OgreHlmsPbsDatablock.h"
Expand Down

0 comments on commit 75801f3

Please sign in to comment.