mirror of git://gcc.gnu.org/git/gcc.git
typeinfo: Correctly match #pragma GCC visibility pop with #pragma GCC visibility push.
2011-01-27 Rafael Avila de Espindola <rafael.espindola@gmail.com> * libsupc++/typeinfo: Correctly match #pragma GCC visibility pop with #pragma GCC visibility push. From-SVN: r183641
This commit is contained in:
parent
38ee081588
commit
b939d4f696
|
|
@ -1,3 +1,8 @@
|
||||||
|
2011-01-27 Rafael Avila de Espindola <rafael.espindola@gmail.com>
|
||||||
|
|
||||||
|
* libsupc++/typeinfo: Correctly match #pragma GCC visibility
|
||||||
|
pop with #pragma GCC visibility push.
|
||||||
|
|
||||||
2012-01-27 Benjamin Kosnik <bkoz@redhat.com>
|
2012-01-27 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
Matthias Klose <doko@ubuntu.com>
|
Matthias Klose <doko@ubuntu.com>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// RTTI support for -*- C++ -*-
|
// RTTI support for -*- C++ -*-
|
||||||
// Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
// Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||||
// 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011
|
// 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011, 2012
|
||||||
// Free Software Foundation
|
// Free Software Foundation
|
||||||
//
|
//
|
||||||
// This file is part of GCC.
|
// This file is part of GCC.
|
||||||
|
|
@ -38,7 +38,6 @@
|
||||||
#include <bits/hash_bytes.h>
|
#include <bits/hash_bytes.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#pragma GCC visibility push(default)
|
#pragma GCC visibility push(default)
|
||||||
|
|
||||||
extern "C++" {
|
extern "C++" {
|
||||||
|
|
@ -218,7 +217,8 @@ namespace std
|
||||||
};
|
};
|
||||||
} // namespace std
|
} // namespace std
|
||||||
|
|
||||||
|
} // extern "C++"
|
||||||
|
|
||||||
#pragma GCC visibility pop
|
#pragma GCC visibility pop
|
||||||
|
|
||||||
} // extern "C++"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue