diff options
author | zea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 19:09:43 +0000 |
---|---|---|
committer | zea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 19:09:43 +0000 |
commit | 578a05c290474305000848620939f02d3e3f214f (patch) | |
tree | 8a6ad6fef81aa52eaa108af45e039bd3cf160865 /chrome/browser/sync | |
parent | 268954f65c9da0b6244ff9a652028484055d96c2 (diff) | |
download | chromium_src-578a05c290474305000848620939f02d3e3f214f.zip chromium_src-578a05c290474305000848620939f02d3e3f214f.tar.gz chromium_src-578a05c290474305000848620939f02d3e3f214f.tar.bz2 |
Revert 94139 - [Sync] Fix clang break from r94128
TBR=akalin@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7480023
TBR=zea@chromium.org
Review URL: http://codereview.chromium.org/7470025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r-- | chrome/browser/sync/api/sync_error.cc | 3 | ||||
-rw-r--r-- | chrome/browser/sync/api/sync_error.h | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/sync/api/sync_error.cc b/chrome/browser/sync/api/sync_error.cc index 41fcbca..c916bae 100644 --- a/chrome/browser/sync/api/sync_error.cc +++ b/chrome/browser/sync/api/sync_error.cc @@ -22,9 +22,6 @@ SyncError::SyncError(const SyncError& other) { Copy(other); } -SyncError::~SyncError() { -} - SyncError& SyncError::operator=(const SyncError& other) { if (this == &other) { return *this; diff --git a/chrome/browser/sync/api/sync_error.h b/chrome/browser/sync/api/sync_error.h index ff43a27..326e9d4 100644 --- a/chrome/browser/sync/api/sync_error.h +++ b/chrome/browser/sync/api/sync_error.h @@ -36,8 +36,6 @@ class SyncError { SyncError(const SyncError& other); SyncError& operator=(const SyncError& other); - ~SyncError(); - // Reset the current error to a new error. May be called irrespective of // whether IsSet() is true. After this is called, IsSet() will return true. // Will print the new error to LOG(ERROR). |