This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Ada arrays - a problem with aggregate notation.


Hi,

The  GDB  manual  (Ninth  Edition,  for  gdb  version 6.6.50.20070317)
section 12.4.6.2 says:

== quote ==
There is limited support for [Ada] array and record aggregates. They are
permitted only on the right sides of assignments, as in these examples:
       set An_Array := (1, 2, 3, 4, 5, 6)
(...)
== end quote ==

The problem is, whenever I try to assign values to elements of an
array using the aggregate notation (e.g. (1, 2, 3, 4, 5, 6) as in example
above), I'm getting an error message like this one:
       A syntax error in expression, near ` 2, 3, 4, 5, 6)'.

Setting values of individual elements does work
       set An_Array(1) := 1
       set An_Array(2) := 55
       etc.

but using aggregate would be far more convenient...

I have no idea what I might be doing wrong here / what limitation
prevents me from using an aggregate notation.

Any ideas please?

Many thanks,
Jan



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]