Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ in this file.

The format of this file is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased] - Release date yyyy-mm-dd

### Fixed
- Removed template arguments when declaring special member functions of a template class. They are unnecessary and even disallowed by some compilers.

## [Version 0.15.2] - Release date 2025-09-15

### Added
Expand Down
6 changes: 3 additions & 3 deletions src/care/LoopFuser.h
Original file line number Diff line number Diff line change
Expand Up @@ -642,21 +642,21 @@ class LoopFuser : public FusedActions {
/// in the event that a user wants to maintain multiple independent
/// LoopFuser objects.
///////////////////////////////////////////////////////////////////////////
CARE_DLL_API LoopFuser<REGISTER_COUNT, XARGS...>(allocator);
CARE_DLL_API LoopFuser(allocator);


///////////////////////////////////////////////////////////////////////////
/// @author Peter Robinson
/// @brief The destructor.
///////////////////////////////////////////////////////////////////////////
CARE_DLL_API ~LoopFuser<REGISTER_COUNT, XARGS...>();
CARE_DLL_API ~LoopFuser();

///////////////////////////////////////////////////////////////////////////
/// @author Peter Robinson
/// @brief gets a static singleton instance of a LoopFuser.
/// @return The default instance.
///////////////////////////////////////////////////////////////////////////
CARE_DLL_API static LoopFuser<REGISTER_COUNT, XARGS...> * getInstance();
CARE_DLL_API static LoopFuser* getInstance();

///////////////////////////////////////////////////////////////////////////
/// @author Peter Robinson
Expand Down