Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
Use hpp-util kitelab macros to avoid -pedantic warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio El Khoury committed Oct 7, 2013
1 parent 23586c4 commit 1e1d73f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions include/hpp/constrained/config-optimizer.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
#include "hpp/constrained/fwd.hh"
#include "hpp/constrained/config-extendor.hh"

KIT_PREDEF_CLASS (CkwsPath)
KIT_PREDEF_CLASS (CkwsDistance)
HPP_KIT_PREDEF_CLASS (CkwsPath);
HPP_KIT_PREDEF_CLASS (CkwsDistance);

namespace hpp {
namespace constrained {
Expand All @@ -51,7 +51,7 @@ namespace hpp {
typedef std::priority_queue <ConfigWithCost,std::vector <ConfigWithCost>,
compareConfigsWithCost> ConfigQueue;

KIT_PREDEF_CLASS (ConfigOptimizer)
HPP_KIT_PREDEF_CLASS (ConfigOptimizer);
class ConfigOptimizer : public CkwsPathPlanner
{
public:
Expand Down
8 changes: 4 additions & 4 deletions include/hpp/constrained/fwd.hh
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
#ifndef HPP_CONSTRAINED_FWD_HH
#define HPP_CONSTRAINED_FWD_HH

#include <KineoUtility/kitDefine.h>
#include <hpp/util/kitelab.hh>

namespace hpp {
namespace constrained {
class ConfigProjector;
class ConfigExtendor;
class ConfigOptimizer;
class ConstraintSet;
KIT_PREDEF_CLASS (ConfigShooter)
KIT_PREDEF_CLASS (GoalConfigGenerator)
KIT_PREDEF_CLASS (KwsConstraint)
HPP_KIT_PREDEF_CLASS (ConfigShooter);
HPP_KIT_PREDEF_CLASS (GoalConfigGenerator);
HPP_KIT_PREDEF_CLASS (KwsConstraint);
} //end of namespace constrained
} //end of namespace hpp

Expand Down

0 comments on commit 1e1d73f

Please sign in to comment.