move CCTK_ARGUMENTS creation with other bindings code

Issue #2681 resolved
Roland Haas created an issue

Pull request

https://bitbucket.org/cactuscode/cactus/pull-requests/147

moves the code and message “Generating arguments...” to happen along with the other code generating output (“Creating FOO bindings”) making build output more uniform.

Currently it is incorrectly indented and happens at an unusual place:

Checking consistency...
Creating Thorn-Flesh bindings...
   Creating implementation bindings...
   Creating parameter bindings...
   Creating variable bindings...
   Creating schedule bindings...
   Creating function bindings...
Generating arguments...
CST finished.

with the change the output is:

Checking consistency...
Creating Thorn-Flesh bindings...
   Creating implementation bindings...
   Creating parameter bindings...
   Creating variable bindings...
   Creating schedule bindings...
   Creating function bindings...
   Generating arguments...
CST finished.

Comments (4)

  1. Log in to comment