StimulusBuffer: Fix linker errors
This commit is contained in:
@@ -40,8 +40,11 @@ public:
|
||||
|
||||
public:
|
||||
explicit StimulusBuffer(
|
||||
const device::DeviceAttachmentSpec& deviceAttachmentSpec);
|
||||
~StimulusBuffer();
|
||||
const device::DeviceAttachmentSpec& deviceAttachmentSpec)
|
||||
: deviceAttachmentSpec(deviceAttachmentSpec)
|
||||
{}
|
||||
|
||||
~StimulusBuffer() = default;
|
||||
|
||||
// Non-copyable, movable
|
||||
StimulusBuffer(const StimulusBuffer&) = delete;
|
||||
@@ -49,7 +52,7 @@ public:
|
||||
StimulusBuffer(StimulusBuffer&&) = default;
|
||||
StimulusBuffer& operator=(StimulusBuffer&&) = default;
|
||||
|
||||
private:
|
||||
public:
|
||||
device::DeviceAttachmentSpec deviceAttachmentSpec;
|
||||
std::vector<StimFrame> frames_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user