diff options
author | ch.dumez@samsung.com <ch.dumez@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-14 17:29:42 +0000 |
---|---|---|
committer | ch.dumez@samsung.com <ch.dumez@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-14 17:29:42 +0000 |
commit | d19444165fa018fcc3286a93e764ba3e6b1ea413 (patch) | |
tree | a77c89f39fa500508c981bf66f018d6dd9a1d9cc /base/bind.h | |
parent | 61e1346cd1ddd74adf201b82313428156373cc00 (diff) | |
download | chromium_src-d19444165fa018fcc3286a93e764ba3e6b1ea413.zip chromium_src-d19444165fa018fcc3286a93e764ba3e6b1ea413.tar.gz chromium_src-d19444165fa018fcc3286a93e764ba3e6b1ea413.tar.bz2 |
Remove unused typedef in base/bind.h
Remove unused typedef in base/bind.h to fix TestShell build with gcc 4.8.
Review URL: https://codereview.chromium.org/136553005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244755 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/bind.h')
-rw-r--r-- | base/bind.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/base/bind.h b/base/bind.h index 5cf124d..b14f70c 100644 --- a/base/bind.h +++ b/base/bind.h @@ -65,12 +65,6 @@ Bind(Functor functor) { typedef typename internal::FunctorTraits<Functor>::RunnableType RunnableType; typedef typename internal::FunctorTraits<Functor>::RunType RunType; - // Use RunnableType::RunType instead of RunType above because our - // checks should below for bound references need to know what the actual - // functor is going to interpret the argument as. - typedef internal::FunctionTraits<typename RunnableType::RunType> - BoundFunctorTraits; - typedef internal::BindState<RunnableType, RunType, void()> BindState; |