Changeset 214 in flair-src for trunk/lib/FlairCore/src/cvmatrix_descriptor.cpp
- Timestamp:
- Feb 7, 2018, 5:49:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/cvmatrix_descriptor.cpp
r15 r214 46 46 string name) { 47 47 if (row >= rows || col >= cols) { 48 getFrameworkManager()->Err("index out of bound %s (%i,%i), range(%i,%i)\n",48 getFrameworkManager()->Err("index out of bound %s (%i,%i), max (%i,%i)\n", 49 49 name.c_str(), row, col, rows - 1, cols - 1); 50 50 return; … … 55 55 string cvmatrix_descriptor::ElementName(uint32_t row, uint32_t col) const { 56 56 if (row >= rows || col >= cols) { 57 getFrameworkManager()->Err("index out of bound (%i,%i), range(%i,%i)\n",57 getFrameworkManager()->Err("index out of bound (%i,%i), max (%i,%i)\n", 58 58 row, col, rows - 1, cols - 1); 59 59 return *element_names[0]; // safe value...
Note:
See TracChangeset
for help on using the changeset viewer.