diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 19:43:09 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 19:43:09 +0000 |
commit | 967be67d0228174b07c0f2815dd14157b6e245c3 (patch) | |
tree | 1c17833610aac63ccbb5d68e8526643f5bb33420 /gpu | |
parent | 721c8232e75b813b3c58fc4a498d7e8889b8a2d6 (diff) | |
download | chromium_src-967be67d0228174b07c0f2815dd14157b6e245c3.zip chromium_src-967be67d0228174b07c0f2815dd14157b6e245c3.tar.gz chromium_src-967be67d0228174b07c0f2815dd14157b6e245c3.tar.bz2 |
Fix clang buildbot
Apparently FeatureInfo is now complex enough to require an explicit destructor
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6686055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78074 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/command_buffer/service/feature_info.cc | 3 | ||||
-rw-r--r-- | gpu/command_buffer/service/feature_info.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gpu/command_buffer/service/feature_info.cc b/gpu/command_buffer/service/feature_info.cc index 7a38bf3..bc58f11 100644 --- a/gpu/command_buffer/service/feature_info.cc +++ b/gpu/command_buffer/service/feature_info.cc @@ -15,6 +15,9 @@ namespace gles2 { FeatureInfo::FeatureInfo() { } +FeatureInfo::~FeatureInfo() { +} + // Helps query for extensions. class ExtensionHelper { public: diff --git a/gpu/command_buffer/service/feature_info.h b/gpu/command_buffer/service/feature_info.h index 4eb80cc..44f1008 100644 --- a/gpu/command_buffer/service/feature_info.h +++ b/gpu/command_buffer/service/feature_info.h @@ -34,6 +34,7 @@ class FeatureInfo { }; FeatureInfo(); + ~FeatureInfo(); // If allowed features = NULL or "*", all features are allowed. Otherwise // only features that match the strings in allowed_features are allowed. |