diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-04-29 03:59:45 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-05-04 14:11:25 +0300 |
commit | 37958dfd713dd00d4a71a78a6a45f8016ad82e65 (patch) | |
tree | c8f958dc5a9877d6d6afe95bcf8e960e3ca1f722 /test/camera-sensor.cpp | |
parent | 4f1d1a48fe7ebe1282d7608a59cb059e1367e584 (diff) |
libcamera: Replace toString with operator<<() for geometry classes
Now that geometry classes implement the stream formatting operator<<(),
use it instead of the toString() function.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/camera-sensor.cpp')
-rw-r--r-- | test/camera-sensor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/camera-sensor.cpp b/test/camera-sensor.cpp index 372ee4af..9b06a60e 100644 --- a/test/camera-sensor.cpp +++ b/test/camera-sensor.cpp @@ -86,8 +86,7 @@ protected: const Size &resolution = sensor_->resolution(); if (resolution != Size(4096, 2160)) { - cerr << "Incorrect sensor resolution " - << resolution.toString() << endl; + cerr << "Incorrect sensor resolution " << resolution << endl; return TestFail; } |