Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

No ippl class

Merged frey_m requested to merge no-ippl-class into master
All threads resolved!

Remove the class Ippl and replace with global initialize and finalize functions. This way we get rid of the static variables.

Old initialisaton:

int main(int argc, char* argv[]) {
    Ippl ippl(argc, argv);

    // some code
}

New initialisation:

int main(int argc, char* argv[]) {
    ippl::initialize(argc, argv);
    {
        // some code
    }
    ippl::finalize();
}
Edited by frey_m

Merge request reports

Approved by

Merged by frey_mfrey_m 1 year ago (Jun 5, 2023 12:14pm UTC)

Merge details

  • Changes merged into master with 8b1acc9d.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m resolved all threads

    resolved all threads

  • muralikrishnan approved this merge request

    approved this merge request

  • frey_m mentioned in commit 8b1acc9d

    mentioned in commit 8b1acc9d

  • merged

  • frey_m mentioned in merge request !185 (merged)

    mentioned in merge request !185 (merged)

  • frey_m mentioned in commit 1fc8eaa0

    mentioned in commit 1fc8eaa0

  • mentioned in issue #163 (closed)

  • Please register or sign in to reply
    Loading