Skip to content

Commit

Permalink
fix warning on d400-options.h
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel committed Oct 8, 2023
1 parent 03e0fc5 commit 2d9f913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ds/d400/d400-options.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace librealsense
virtual float query() const override;
virtual option_range get_range() const override;
virtual bool is_enabled() const override { return true; }
virtual bool is_read_only() const { return _sensor && _sensor->is_opened(); }
virtual bool is_read_only() const override { return _sensor && _sensor->is_opened(); }
virtual const char* get_description() const override
{
return "Exposure limit is in microseconds. If the requested exposure limit is greater than frame time, it will be set to frame time at runtime. Setting will not take effect until next streaming session.";
Expand Down

0 comments on commit 2d9f913

Please sign in to comment.