Skip to content

Commit 0d44a6e

Browse files
authored
Cleanup: Drop unused forward declaration (#113)
Signed-off-by: Michael Carroll <[email protected]>
1 parent 06e3421 commit 0d44a6e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

graphics/include/ignition/common/Animation.hh

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ namespace ignition
3434
class KeyFrame;
3535
class PoseKeyFrame;
3636
class NumericKeyFrame;
37-
class AnimationPrivate;
3837
class TrajectoryInfoPrivate;
3938

4039
/// \class Animation Animation.hh ignition/common/Animation.hh

graphics/src/Animation.cc

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,15 @@ namespace
4040
}
4141

4242
/////////////////////////////////////////////////
43-
class ignition::common::AnimationPrivate
43+
namespace ignition {
44+
namespace common {
45+
class AnimationPrivate
4446
{
4547
/// \brief true if the animation is interpolated in x
4648
public: bool interpolateX = false;
4749
};
50+
} // namespace ignition
51+
} // namespace common
4852

4953
// TODO(luca) Make Animation class follow PIMPL and remove global static map
5054
/////////////////////////////////////////////////

0 commit comments

Comments
 (0)