Skip to content

Commit

Permalink
Linux: gcc 13.x fixes (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
emminizer authored Jan 22, 2025
1 parent 482f6c4 commit f2b6558
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/rocky/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <memory>
#include <iostream>
#include <cstdlib>
#include <cstdint>

// match the weejobs export to the library export
#ifndef WEEJOBS_EXPORT
Expand Down
2 changes: 1 addition & 1 deletion src/rocky/rocky-config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ include(CMakeFindDependencyMacro)
# Find public dependencies
find_dependency(glm CONFIG)
find_dependency(spdlog CONFIG)
find_dependency(entt CONFIG)
find_dependency(EnTT CONFIG)
find_dependency(vsg CONFIG)

# Find private dependencies, for linking to static library
Expand Down
4 changes: 2 additions & 2 deletions src/rocky/vsg/ecs/ECSNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ namespace ROCKY_NAMESPACE

public:
//! Destructor
virtual ~SystemNode<T>();
virtual ~SystemNode();

// looks for any new components that need VSG initialization
void update(VSGContext&) override;

protected:
//! Construct from a subclass
SystemNode<T>(Registry& in_registry);
SystemNode(Registry& in_registry);

//! Feature mask for a specific component instance
virtual int featureMask(const T& t) const { return 0; }
Expand Down

0 comments on commit f2b6558

Please sign in to comment.