Skip to content

Commit 02651af

Browse files
Fix up support for MPI_DEBUG
Remove virtual inheritance in Object.
1 parent 584e5f9 commit 02651af

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

classdescMP.h

+3-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//#undef SEEK_END
2121
#include <mpi.h>
2222
#include <stdexcept>
23-
#include <stdio.h>
23+
#include <cstdio>
2424
#include <vector>
2525

2626
namespace classdesc
@@ -432,8 +432,7 @@ namespace classdesc
432432
{
433433
#if MPI_DEBUG
434434
/* enable this piece of code for debugging under gdb */
435-
char buf[1];
436-
if (myid==0) gets(buf);
435+
if (myid==0) std::getchar();
437436
MPI_Barrier(MPI_COMM_WORLD);
438437
#endif
439438
if (myid()>0)
@@ -494,8 +493,7 @@ namespace classdesc
494493
MPI_Comm_size(MPI_COMM_WORLD,&nprocs);
495494
#if MPI_DEBUG
496495
/* enable this piece of code for debugging under gdb */
497-
char buf[1];
498-
if (myid==0) gets(buf);
496+
if (myid==0) std::getchar();
499497
MPI_Barrier(MPI_COMM_WORLD);
500498
#endif
501499
}

object.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ namespace classdesc
7373
7474
*/
7575
template <class This, class Base=object>
76-
struct Object: virtual public Base
76+
struct Object: public Base
7777
{
7878
/// warning, this method should not be called before main() in any
7979
/// other module than the one declaring classdesc::factory

0 commit comments

Comments
 (0)