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

[Ada] Minor refactoring: remove extra parentheses

2018-07-17  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

	* einfo.adb (Is_Wrapper_Package): Remove extra parentheses.

From-SVN: r262770
parent ad8adad1
2018-07-17 Piotr Trojanek <trojanek@adacore.com>
* einfo.adb (Is_Wrapper_Package): Remove extra parentheses.
2018-07-17 Ed Schonberg <schonberg@adacore.com>
* sem_util.adb (Enclosing_Subprogram): Handle properly entries, and
......
......@@ -8385,7 +8385,7 @@ package body Einfo is
function Is_Wrapper_Package (Id : E) return B is
begin
return (Ekind (Id) = E_Package and then Present (Related_Instance (Id)));
return Ekind (Id) = E_Package and then Present (Related_Instance (Id));
end Is_Wrapper_Package;
-----------------
......
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