Skip to content

Commit

Permalink
remove trailing spaces in ada template (#7527)
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 committed Jan 30, 2018
1 parent 4b428e8 commit 6b9d38d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions modules/swagger-codegen/src/main/resources/Ada/config.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract project Config is

package Builder is
case Mode is
when "debug" =>
when "debug" =>
for Default_Switches ("Ada") use ("-g", "-j" & Processors);
when others =>
for Default_Switches ("Ada") use ("-g", "-O2", "-j" & Processors);
Expand Down Expand Up @@ -68,7 +68,7 @@ abstract project Config is

when "optimize" =>
for Default_Switches ("Ada") use ("-Wl,--gc-sections");

when others =>
null;
end case;
Expand All @@ -79,8 +79,8 @@ abstract project Config is
("-fprofile-arcs");
when others =>
end case;
end linker;
end linker;

package Ide is
for VCS_Kind use "git";
end Ide;
Expand Down
8 changes: 4 additions & 4 deletions samples/client/petstore/ada/config.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract project Config is

package Builder is
case Mode is
when "debug" =>
when "debug" =>
for Default_Switches ("Ada") use ("-g", "-j" & Processors);
when others =>
for Default_Switches ("Ada") use ("-g", "-O2", "-j" & Processors);
Expand Down Expand Up @@ -68,7 +68,7 @@ abstract project Config is

when "optimize" =>
for Default_Switches ("Ada") use ("-Wl,--gc-sections");

when others =>
null;
end case;
Expand All @@ -79,8 +79,8 @@ abstract project Config is
("-fprofile-arcs");
when others =>
end case;
end linker;
end linker;

package Ide is
for VCS_Kind use "git";
end Ide;
Expand Down

0 comments on commit 6b9d38d

Please sign in to comment.