From 13432ebfb78b9c73f86dd06a1a5ec24c66c5edca Mon Sep 17 00:00:00 2001 From: Seiya Tokui Date: Thu, 3 Apr 2014 16:56:38 +0900 Subject: [PATCH] Fix parameter orders in declaration of Reshape --- include/caffe/blob.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/caffe/blob.hpp b/include/caffe/blob.hpp index e7de81b..3185263 100644 --- a/include/caffe/blob.hpp +++ b/include/caffe/blob.hpp @@ -18,8 +18,8 @@ class Blob { explicit Blob(const int num, const int channels, const int height, const int width); virtual ~Blob() {} - void Reshape(const int num, const int height, - const int width, const int channels); + void Reshape(const int num, const int channels, const int height, + const int width); inline int num() const { return num_; } inline int channels() const { return channels_; } inline int height() const { return height_; } -- 2.7.4