+2015-10-26 Ed Schonberg <schonberg@adacore.com>
+
+ * sem_ch12.adb (Analyze_Formal_Package_Declaration): Do not set
+ Box_Present when the formal part is (others => <>) even though
+ it is equivalent to a formal part (<>), because ASIS tools depend
+ on the syntactic setting of this flag.
+
+2015-10-26 Hristian Kirtchev <kirtchev@adacore.com>
+
+ * sem_ch13.adb: Minor reformatting.
+ * einfo.ads: Minor typo.
+
+2015-10-26 Joel Brobecker <brobecker@adacore.com brobecker>
+
+ * adaint.c (__gnat_open_new_temp): Use mkstemp on Android.
+
2015-10-26 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Analyze_Formal_Package_Declaration): Code clean up.
strcpy (path, "GNAT-XXXXXX");
#if (defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) \
- || defined (__linux__) || defined (__GLIBC__)) && !defined (__vxworks) \
- || defined (__DragonFly__)
+ || defined (__linux__) || defined (__GLIBC__) || defined (__ANDROID__) \
+ || defined (__DragonFly__)) && !defined (__vxworks)
return mkstemp (path);
#elif defined (__Lynx__)
mktemp (path);
-- Requires_Overriding (Flag213)
-- Defined in all subprograms and entries. Set for subprograms that
-- require overriding as defined by RM-2005-3.9.3(6/2). Note that this
--- is True only for implicitly declare subprograms; it is not set on the
+-- is True only for implicitly declared subprograms; it is not set on the
-- parent type's subprogram. See also Is_Abstract_Subprogram.
-- Return_Present (Flag54)
else
Illegal_Indexing
- ("indexing function already inherited "
- & "from parent type");
+ ("indexing function already inherited from parent type");
Error_Msg_NE
("!override & instead",
N, Entity (Expression (Inherited)));