From 97186375f58ac346460dff08f5bd8e315e32ad65 Mon Sep 17 00:00:00 2001 From: Jonathan L Long Date: Mon, 10 Mar 2014 22:06:03 -0700 Subject: [PATCH] Add extra comment on vector_indexing_suite to _caffe.cpp --- python/caffe/_caffe.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python/caffe/_caffe.cpp b/python/caffe/_caffe.cpp index 70edc8f..5cd316d 100644 --- a/python/caffe/_caffe.cpp +++ b/python/caffe/_caffe.cpp @@ -45,6 +45,7 @@ class CaffeBlob { int width() const { return blob_->width(); } int count() const { return blob_->count(); } + // this is here only to satisfy boost's vector_indexing_suite bool operator == (const CaffeBlob &other) { return this->blob_ == other.blob_; } -- 2.7.4