Fix Mac warnings

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/132263002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18522 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
rossberg@chromium.org 2014-01-09 17:37:48 +00:00
parent 1c33a2d840
commit 713a74ca09
3 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ size_t GetMemoryUsedByList(const List<T, P>& list) {
class Map; class Map;
template<class> class TypeImpl; template<class> class TypeImpl;
class HeapTypeConfig; struct HeapTypeConfig;
typedef TypeImpl<HeapTypeConfig> Type; typedef TypeImpl<HeapTypeConfig> Type;
class Code; class Code;
template<typename T> class Handle; template<typename T> class Handle;

View File

@ -883,7 +883,7 @@ class ObjectVisitor;
class StringStream; class StringStream;
// We cannot just say "class Type;" if it is created from a template... =8-? // We cannot just say "class Type;" if it is created from a template... =8-?
template<class> class TypeImpl; template<class> class TypeImpl;
class HeapTypeConfig; struct HeapTypeConfig;
typedef TypeImpl<HeapTypeConfig> Type; typedef TypeImpl<HeapTypeConfig> Type;

View File

@ -59,7 +59,7 @@ namespace internal {
class Smi; class Smi;
template<class> class TypeImpl; template<class> class TypeImpl;
class HeapTypeConfig; struct HeapTypeConfig;
typedef TypeImpl<HeapTypeConfig> Type; typedef TypeImpl<HeapTypeConfig> Type;
class TypeInfo; class TypeInfo;