Commit c22cf238 by Jamie Madill

Fix missing virtual destructor warning.

This only showed up on Linux/standalone builds for me. The error was added during the Debug extension patch. Change-Id: Ibfcbdb61a71f30e863a10719c552ce662f835256 Reviewed-on: https://chromium-review.googlesource.com/320330 Tryjob-Request: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 7f448b58
...@@ -22,6 +22,7 @@ namespace gl ...@@ -22,6 +22,7 @@ namespace gl
class LabeledObject class LabeledObject
{ {
public: public:
virtual ~LabeledObject() {}
virtual void setLabel(const std::string &label) = 0; virtual void setLabel(const std::string &label) = 0;
virtual const std::string &getLabel() const = 0; virtual const std::string &getLabel() const = 0;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment