forked from iains/gcc-14-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vec.h (class vec_prefix): Change into struct.
* vec.h (class vec_prefix): Change into struct. Rename field alloc_PRIVATE_ back to alloc_. Rename field num_PRIVATE_ to num_. Update all users. (class vec<T, A, vl_embed>): Rename field pfx_PRIVATE_ to vecpfx_. Rename field data_PRIVATE_ to vecdata_. Update all users. (class vec<T, A, vl_ptr>): Make every field public. Rename field vec_PRIVATE_ back to vec_. Update all users. From-SVN: r193675
- Loading branch information
1 parent
e98fc6d
commit 26da79f
Showing
3 changed files
with
118 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
2012-11-20 Jakub Jelinek <[email protected]> | ||
|
||
* vec.h (class vec_prefix): Change into struct. | ||
Rename field alloc_PRIVATE_ back to alloc_. | ||
Rename field num_PRIVATE_ to num_. | ||
Update all users. | ||
(class vec<T, A, vl_embed>): Rename field pfx_PRIVATE_ to vecpfx_. | ||
Rename field data_PRIVATE_ to vecdata_. | ||
Update all users. | ||
(class vec<T, A, vl_ptr>): Make every field public. | ||
Rename field vec_PRIVATE_ back to vec_. | ||
Update all users. | ||
|
||
2012-11-20 Richard Sandiford <[email protected]> | ||
|
||
PR middle-end/55403 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.