Skip to content

Commit

Permalink
FIX: compilation error. (#710)
Browse files Browse the repository at this point in the history
For some reason we are returning a method's name instead of
calling it.

Fixes  #705
  • Loading branch information
andre-caldas committed Jun 7, 2024
1 parent 67bdd38 commit 94e7a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gsModeling/gsTemplate.h
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ class gsTemplate : public gsBoxTopology
return os;
}

short_t parDim() const { return dim; }
short_t parDim() const { return dim(); }

/// Number of patches
index_t nPatches() const { return this->size(); }
Expand Down

0 comments on commit 94e7a4b

Please sign in to comment.