Commit a1fda1e8 by Piotr Trojanek Committed by Pierre-Marie de Rodat

[Ada] Bindo.Graphs: Minor typo fixes

2019-08-21  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

	* bindo-graphs.ads (Iterate_Edges_To_Successors): Fix typo in
	pragma Inline.
	* bindo-graphs.adb (Delete_Edge): Fix layout in parameter list.

From-SVN: r274784
parent 830c5948
2019-08-21 Piotr Trojanek <trojanek@adacore.com>
* bindo-graphs.ads (Iterate_Edges_To_Successors): Fix typo in
pragma Inline.
* bindo-graphs.adb (Delete_Edge): Fix layout in parameter list.
2019-08-21 Gary Dismukes <dismukes@adacore.com>
* exp_ch3.adb (Build_Master): Suppress call to
......
......@@ -1144,7 +1144,7 @@ package body Bindo.Graphs is
-- successor.
procedure Delete_Edge
(G : Library_Graph;
(G : Library_Graph;
Edge : Library_Graph_Edge_Id);
pragma Inline (Delete_Edge);
-- Delete edge Edge from library graph G
......
......@@ -1406,7 +1406,7 @@ package Bindo.Graphs is
function Iterate_Edges_To_Successors
(G : Library_Graph;
Vertex : Library_Graph_Vertex_Id) return Edges_To_Successors_Iterator;
pragma Inline (Iterate_Components);
pragma Inline (Iterate_Edges_To_Successors);
-- Obtain an iterator over all edges to successors with predecessor
-- vertex Vertex of library graph G.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment