We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c30cf commit 5df6d52Copy full SHA for 5df6d52
1 file changed
src/mesh/impls/bout/boutmesh.cxx
@@ -270,8 +270,8 @@ void BoutMesh::chooseProcessorSplit(Options& options) {
270
}
271
if (nx % NXPE != 0) {
272
throw BoutException(
273
- _("Number of x points ({:d}) not divisible by NPs in x direction ({:d})\n"), nx,
274
- NXPE);
+ _f("Number of x points ({:d}) not divisible by NPs in x direction ({:d})\n"),
+ nx, NXPE);
275
276
NYPE = NPES / NXPE;
277
} else {
@@ -287,8 +287,8 @@ void BoutMesh::chooseProcessorSplit(Options& options) {
287
288
if (ny % NYPE != 0) {
289
290
- _("Number of y points ({:d}) not divisible by NPs in y direction ({:d})\n"), nx,
291
+ _f("Number of y points ({:d}) not divisible by NPs in y direction ({:d})\n"),
292
293
NXPE = NPES / NYPE;
294
0 commit comments