Skip to content

Commit

Permalink
#306: remove extra semicolon warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nlslatt committed Mar 20, 2019
1 parent 4ab028c commit b610c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vt/context/context.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct Context {
WorkerCountType numWorkers_ = no_workers;
bool is_comm_world_ = true;
MPI_Comm communicator_ = MPI_COMM_WORLD;
DeclareClassInsideInitTLS(Context, WorkerIDType, thisWorker_, no_worker_id);
DeclareClassInsideInitTLS(Context, WorkerIDType, thisWorker_, no_worker_id)
};

}} // end namespace vt::ctx
Expand Down
2 changes: 1 addition & 1 deletion src/vt/topos/location/manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct LocationManager {

static LocInstType cur_loc_inst;

PtrType<VrtLocType> virtual_loc = std::make_unique<VrtLocType>();;
PtrType<VrtLocType> virtual_loc = std::make_unique<VrtLocType>();
PtrType<VrtLocProxyType> vrtContextLoc = std::make_unique<VrtLocProxyType>();

template <typename ColT, typename IndexT>
Expand Down

0 comments on commit b610c86

Please sign in to comment.