Skip to content
Snippets Groups Projects
Commit 2aee0384 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Fix for missing return value

parent 9b7ccdc2
No related branches found
No related tags found
No related merge requests found
Pipeline #10725 passed
...@@ -33,7 +33,7 @@ class Display { ...@@ -33,7 +33,7 @@ class Display {
explicit Display(nlohmann::json &config, std::string name); explicit Display(nlohmann::json &config, std::string name);
~Display(); ~Display();
inline bool render(const cv::Mat &rgb, const cv::Mat &depth, const cv::Mat &q) { render(rgb, cv::Mat(), q); } inline bool render(const cv::Mat &rgb, const cv::Mat &depth, const cv::Mat &q) { return render(rgb, cv::Mat(), q); }
bool render(const cv::Mat &rgb, const cv::Mat &rgbr, const cv::Mat &depth, const cv::Mat &q); bool render(const cv::Mat &rgb, const cv::Mat &rgbr, const cv::Mat &depth, const cv::Mat &q);
#if defined HAVE_PCL #if defined HAVE_PCL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment