"using" directives are no longer used in global namespaces (#219)

This commit is contained in:
Tyler Veness
2016-11-01 23:09:51 -07:00
committed by Peter Johnson
parent 78f0b1562c
commit ba8761e39e
39 changed files with 292 additions and 256 deletions

View File

@@ -13,8 +13,6 @@
#include "simulation/gz_msgs/msgs.h"
using namespace gazebo;
namespace frc {
class SimFloatInput {
@@ -28,8 +26,8 @@ class SimFloatInput {
private:
double value;
transport::SubscriberPtr sub;
void callback(const msgs::ConstFloat64Ptr& msg);
gazebo::transport::SubscriberPtr sub;
void callback(const gazebo::msgs::ConstFloat64Ptr& msg);
};
} // namespace frc