move using statements inside namespace caffe to avoid polluting the whole name space.
authorYangqing Jia <jiayq@google.com>
Wed, 16 Jul 2014 23:15:09 +0000 (16:15 -0700)
committerYangqing Jia <jiayq@google.com>
Wed, 16 Jul 2014 23:15:09 +0000 (16:15 -0700)
16 files changed:
include/caffe/layer.hpp
include/caffe/net.hpp
include/caffe/util/insert_splits.hpp
include/caffe/util/io.hpp
include/caffe/util/upgrade_proto.hpp
src/caffe/layer_factory.cpp
src/caffe/layers/accuracy_layer.cpp
src/caffe/layers/bnll_layer.cpp
src/caffe/layers/bnll_layer.cu
src/caffe/layers/data_layer.cpp
src/caffe/layers/data_layer.cu
src/caffe/layers/hdf5_data_layer.cu
src/caffe/layers/image_data_layer.cpp
src/caffe/layers/image_data_layer.cu
src/caffe/layers/window_data_layer.cpp
src/caffe/layers/window_data_layer.cu

index d4d10aa..3e386b3 100644 (file)
 #include "caffe/common.hpp"
 #include "caffe/proto/caffe.pb.h"
 
+namespace caffe {
+
 using std::string;
 using std::vector;
 
-namespace caffe {
-
 template <typename Dtype>
 class Layer {
  public:
index cbd5bec..ce82e28 100644 (file)
 #include "caffe/layer.hpp"
 #include "caffe/proto/caffe.pb.h"
 
+namespace caffe {
+
 using std::map;
 using std::pair;
 using std::set;
 using std::string;
 using std::vector;
 
-namespace caffe {
-
-
 template <typename Dtype>
 class Net {
  public:
index e25cdd7..45c3a05 100644 (file)
@@ -7,11 +7,11 @@
 
 #include "caffe/proto/caffe.pb.h"
 
+namespace caffe {
+
 using std::pair;
 using std::string;
 
-namespace caffe {
-
 // Copy NetParameters with SplitLayers added to replace any shared bottom
 // blobs with unique bottom blobs provided by the SplitLayer.
 void InsertSplits(const NetParameter& param, NetParameter* param_split);
index 4458096..accb094 100644 (file)
 
 #include "caffe/blob.hpp"
 
-using std::string;
-using ::google::protobuf::Message;
-
 #define HDF5_NUM_DIMS 4
 
 namespace caffe {
 
+using std::string;
+using ::google::protobuf::Message;
+
 bool ReadProtoFromTextFile(const char* filename, Message* proto);
 
 inline bool ReadProtoFromTextFile(const string& filename, Message* proto) {
index a1ac060..0772f80 100644 (file)
@@ -8,10 +8,10 @@
 #include "caffe/proto/caffe.pb.h"
 #include "caffe/proto/caffe_pretty_print.pb.h"
 
-using std::string;
-
 namespace caffe {
 
+using std::string;
+
 // Return true iff any layer contains parameters specified using
 // deprecated V0LayerParameter.
 bool NetNeedsUpgrade(const NetParameter& net_param);
index d6e506d..173c870 100644 (file)
@@ -9,10 +9,9 @@
 #include "caffe/vision_layers.hpp"
 #include "caffe/proto/caffe.pb.h"
 
-using std::string;
-
 namespace caffe {
 
+using std::string;
 
 // A function to get a specific layer from the specification given in
 // LayerParameter. Ideally this would be replaced by a factory pattern,
index 4099655..ddfe38a 100644 (file)
 #include "caffe/util/math_functions.hpp"
 #include "caffe/util/io.hpp"
 
-using std::max;
 
 namespace caffe {
 
+using std::max;
+
 template <typename Dtype>
 void AccuracyLayer<Dtype>::SetUp(
   const vector<Blob<Dtype>*>& bottom, vector<Blob<Dtype>*>* top) {
index 95e6bd8..a00de9e 100644 (file)
@@ -6,10 +6,10 @@
 #include "caffe/layer.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::min;
-
 namespace caffe {
 
+using std::min;
+
 const float kBNLL_THRESHOLD = 50.;
 
 template <typename Dtype>
index 7849d11..8fbe7f7 100644 (file)
@@ -6,10 +6,10 @@
 #include "caffe/layer.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::max;
-
 namespace caffe {
 
+using std::max;
+
 const float kBNLL_THRESHOLD = 50.;
 
 template <typename Dtype>
index 29c4fec..5ff1a44 100644 (file)
@@ -14,8 +14,6 @@
 #include "caffe/vision_layers.hpp"
 #include "caffe/proto/caffe.pb.h"
 
-using std::string;
-
 namespace caffe {
 
 template <typename Dtype>
index 40316a1..4409f47 100644 (file)
@@ -11,8 +11,6 @@
 #include "caffe/util/io.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::string;
-
 namespace caffe {
 
 template <typename Dtype>
index 3c27f37..d50d961 100644 (file)
@@ -15,8 +15,6 @@ TODO:
 #include "caffe/util/io.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::string;
-
 namespace caffe {
 
 template <typename Dtype>
index 1f7368e..90ecadf 100644 (file)
 #include "caffe/util/rng.hpp"
 #include "caffe/vision_layers.hpp"
 
+namespace caffe {
+
 using std::iterator;
-using std::string;
 using std::pair;
 
-namespace caffe {
-
 template <typename Dtype>
 void* ImageDataLayerPrefetch(void* layer_pointer) {
   CHECK(layer_pointer);
index dd5bdbc..2b8c8ed 100644 (file)
 #include "caffe/util/io.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::string;
-using std::pair;
-
 namespace caffe {
 
+using std::pair;
+
 template <typename Dtype>
 Dtype ImageDataLayer<Dtype>::Forward_gpu(const vector<Blob<Dtype>*>& bottom,
       vector<Blob<Dtype>*>* top) {
index 5dbdff3..53467e8 100644 (file)
 #include "caffe/util/rng.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::string;
-using std::map;
-using std::pair;
-
 // caffe.proto > LayerParameter > WindowDataParameter
 //   'source' field specifies the window_file
 //   'crop_size' indicates the desired warped size
 
 namespace caffe {
 
+using std::map;
+using std::pair;
+
 template <typename Dtype>
 void* WindowDataLayerPrefetch(void* layer_pointer) {
   WindowDataLayer<Dtype>* layer =
index ca664fc..d4efeca 100644 (file)
 #include "caffe/util/io.hpp"
 #include "caffe/vision_layers.hpp"
 
-using std::string;
-using std::map;
-using std::pair;
-
 // caffe.proto > LayerParameter > WindowDataParameter
 //   'source' field specifies the window_file
 //   'crop_size' indicates the desired warped size
 
 namespace caffe {
 
+using std::map;
+using std::pair;
+
 template <typename Dtype>
 Dtype WindowDataLayer<Dtype>::Forward_gpu(const vector<Blob<Dtype>*>& bottom,
       vector<Blob<Dtype>*>* top) {