aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/lib/java/beans/EventHandler.class
diff options
context:
space:
mode:
authorFabien Chêne <fabien@gcc.gnu.org>2012-06-07 07:36:18 +0200
committerFabien Chêne <fabien@gcc.gnu.org>2012-06-07 07:36:18 +0200
commitcba0366cac405bdcea5395f970718593a18ee456 (patch)
treebeaa374199a40a79b0a42592c6bd3803677126bd /libjava/classpath/lib/java/beans/EventHandler.class
parent0d7afaa749574e40058b94bb762fe90e96c12896 (diff)
downloadgcc-cba0366cac405bdcea5395f970718593a18ee456.zip
gcc-cba0366cac405bdcea5395f970718593a18ee456.tar.gz
gcc-cba0366cac405bdcea5395f970718593a18ee456.tar.bz2
re PR c++/51214 ([C++11] name lookup issue with c++11 enums)
gcc/testsuite/ChangeLog 2012-06-07 Fabien Chêne <fabien@gcc.gnu.org> PR c++/51214 * g++.dg/cpp0x/forw_enum11.C: New. gcc/cp/ChangeLog 2012-06-07 Fabien Chêne <fabien@gcc.gnu.org> PR c++/51214 * cp-tree.h (insert_late_enum_def_into_classtype_sorted_fields): Declare. * class.c (insert_into_classtype_sorted_fields): New. (add_enum_fields_to_record_type): New. (count_fields): Adjust the comment. (add_fields_to_record_type): Likewise. (finish_struct_1): Move the code that inserts the fields for the sorted case, into insert_into_classtype_sorted_fields, and call it. (insert_late_enum_def_into_classtype_sorted_fields): Define. * decl.c (finish_enum_value_list): Call insert_late_enum_def_into_classtype_sorted_fields if a late enum definition is encountered. From-SVN: r188294
Diffstat (limited to 'libjava/classpath/lib/java/beans/EventHandler.class')
0 files changed, 0 insertions, 0 deletions
pendent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package java.nio; /** * @author Michael Koch (konqueror@gmx.de) * @since 1.4 */ public abstract class MappedByteBuffer extends ByteBuffer { MappedByteBuffer (int capacity, int limit, int position, int mark) { super (capacity, limit, position, mark); } void forceImpl() { } public final MappedByteBuffer force () { forceImpl(); return this; } boolean isLoadedImpl() { load(); return true; } public final boolean isLoaded () { return isLoadedImpl(); } void loadImpl() { } public final MappedByteBuffer load () { loadImpl(); return this; } void unmapImpl () { forceImpl(); } public void finalize() throws Throwable { unmapImpl(); } }