File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 20
20
// #undef SEEK_END
21
21
#include < mpi.h>
22
22
#include < stdexcept>
23
- #include < stdio.h >
23
+ #include < cstdio >
24
24
#include < vector>
25
25
26
26
namespace classdesc
@@ -432,8 +432,7 @@ namespace classdesc
432
432
{
433
433
#if MPI_DEBUG
434
434
/* 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 ();
437
436
MPI_Barrier (MPI_COMM_WORLD);
438
437
#endif
439
438
if (myid ()>0 )
@@ -494,8 +493,7 @@ namespace classdesc
494
493
MPI_Comm_size (MPI_COMM_WORLD,&nprocs);
495
494
#if MPI_DEBUG
496
495
/* 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 ();
499
497
MPI_Barrier (MPI_COMM_WORLD);
500
498
#endif
501
499
}
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ namespace classdesc
73
73
74
74
*/
75
75
template <class This , class Base =object>
76
- struct Object : virtual public Base
76
+ struct Object : public Base
77
77
{
78
78
// / warning, this method should not be called before main() in any
79
79
// / other module than the one declaring classdesc::factory
You can’t perform that action at this time.
0 commit comments