commit | fc0b1da4eda489deff77ade415b78178772ab9b3 | [log] [tgz] |
---|---|---|
author | Sean Paul <seanpaul@chromium.org> | Wed Mar 06 09:48:42 2019 -0500 |
committer | Sean Paul <seanpaul@chromium.org> | Mon Mar 18 14:28:45 2019 +0000 |
tree | f74b8e40c95b6aa6ae7c8f0d8e6277e12b23f57b | |
parent | 890988f3f60e8d8367e9613270af20ff46bf8e93 [diff] [blame] |
drm_hwcomposer: Change return type of DrmProperty::value() to tuple To keep consistent with other functions Change-Id: I11ba07eabcee08f3db09b3a5422bc480482a62c1 Signed-off-by: Sean Paul <seanpaul@chromium.org>
diff --git a/drmproperty.h b/drmproperty.h index f1328fe..36cd63d 100644 --- a/drmproperty.h +++ b/drmproperty.h
@@ -45,7 +45,7 @@ uint32_t id() const; std::string name() const; - int value(uint64_t *value) const; + std::tuple<int, uint64_t> value() const; bool immutable() const; private: