Skip to content

Commit

Permalink
Fixed some comment typos and added virtual keyword to some destructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
feldergast committed Dec 17, 2024
1 parent ffc7fa4 commit cce2bb7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/sst/core/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class alignas(64) Link
Attach point for inspecting, modifying or dropping events
sent on the Link.
NOTE: Using the Link::AttachPoint will noticably affect the
NOTE: Using the Link::AttachPoint will noticeably affect the
performance of sending events on Links and it is recommended
that, if possible, Event::HandlerBase::AttachPoint or
Event::HandlerBase::InterceptPoint be used instead.
Expand All @@ -68,7 +68,7 @@ class alignas(64) Link
{
public:
/**
Function that will be called when a attach point is
Function that will be called when an attach point is
registered with the tool implementing the attach point.
The metadata passed in will be dependent on what type of
tool this is attached to. The uintptr_t returned from this
Expand Down
8 changes: 4 additions & 4 deletions src/sst/core/ssthandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class SSTHandlerBase : public SST::Core::Serialization::serializable
virtual returnT operator_impl(argT) = 0;

public:
~SSTHandlerBase() {}
virtual ~SSTHandlerBase() {}

inline returnT operator()(argT arg)
{
Expand Down Expand Up @@ -342,7 +342,7 @@ class SSTHandlerBase<void, argT> : public SST::Core::Serialization::serializable
virtual void operator_impl(argT) = 0;

public:
~SSTHandlerBase() {}
virtual ~SSTHandlerBase() {}

inline void operator()(argT arg)
{
Expand Down Expand Up @@ -476,7 +476,7 @@ class SSTHandlerBase<returnT, void> : public SST::Core::Serialization::serializa
virtual returnT operator_impl() = 0;

public:
~SSTHandlerBase() {}
virtual ~SSTHandlerBase() {}

inline returnT operator()()
{
Expand Down Expand Up @@ -590,7 +590,7 @@ class SSTHandlerBase<void, void> : public SST::Core::Serialization::serializable
virtual void operator_impl() = 0;

public:
~SSTHandlerBase() {}
virtual ~SSTHandlerBase() {}

inline void operator()()
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ EXTRA_DIST += \
tests/testsuite_default_Output.py \
tests/testsuite_default_ParamComponent.py \
tests/testsuite_default_PerfComponent.py \
tests/testsuite_default_Profilng.py \
tests/testsuite_default_Profiling.py \
tests/testsuite_default_RNGComponent.py \
tests/testsuite_default_RealTime.py \
tests/testsuite_default_SharedObject.py \
Expand Down

0 comments on commit cce2bb7

Please sign in to comment.