[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libcvd-members] libcvd/cvd image.h
From: |
Gerhard Reitmayr |
Subject: |
[libcvd-members] libcvd/cvd image.h |
Date: |
Wed, 15 Apr 2009 09:53:55 +0000 |
CVSROOT: /cvsroot/libcvd
Module name: libcvd
Changes by: Gerhard Reitmayr <gerhard> 09/04/15 09:53:55
Modified files:
cvd : image.h
Log message:
used wrong namespace, again
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libcvd/cvd/image.h?cvsroot=libcvd&r1=1.44&r2=1.45
Patches:
Index: image.h
===================================================================
RCS file: /cvsroot/libcvd/libcvd/cvd/image.h,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- image.h 15 Apr 2009 09:46:38 -0000 1.44
+++ image.h 15 Apr 2009 09:53:54 -0000 1.45
@@ -389,7 +389,7 @@
}
inline void copy_from( const SubImage<T> & other ){
- CVD_IMAGE_ASSERT(other.size() == this->size(),
Image::IncompatibleImageSizes);
+ CVD_IMAGE_ASSERT(other.size() == this->size(),
Exceptions::Image::IncompatibleImageSizes);
std::copy(other.begin(), other.end(), this->begin());
}