Skip to content
Snippets Groups Projects
Commit 4d44959f authored by Maxence Naud's avatar Maxence Naud
Browse files

[Fix] #define syntax

parent f83d454a
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!4Dataloader
Pipeline #37706 passed
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
* *
********************************************************************************/ ********************************************************************************/
#ifndef AIDGE_CORE_BACKEND_STIMULIIMPL_H_ #ifndef AIDGE_CORE_BACKEND_STIMULUSIMPL_H_
#define AIDGE_CORE_BACKEND_STIMULIIMPL_H_ #define AIDGE_CORE_BACKEND_STIMULUSIMPL_H_
#include <memory> #include <memory>
...@@ -25,8 +25,8 @@ class StimulusImpl { ...@@ -25,8 +25,8 @@ class StimulusImpl {
public: public:
virtual ~StimulusImpl() noexcept = default; virtual ~StimulusImpl() noexcept = default;
virtual std::shared_ptr<Tensor> load() = 0; virtual std::shared_ptr<Tensor> load() const = 0;
}; };
} // namespace Aidge } // namespace Aidge
#endif /* AIDGE_CORE_BACKEND_STIMULIIMPL_H_ */ #endif /* AIDGE_CORE_BACKEND_STIMULUSIMPL_H_ */
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
* *
********************************************************************************/ ********************************************************************************/
#ifndef AIDGE_CORE_STIMULI_STIMULI_H_ #ifndef AIDGE_CORE_STIMULI_STIMULUS_H_
#define AIDGE_CORE_STIMULI_STIMULI_H_ #define AIDGE_CORE_STIMULI_STIMULUS_H_
#include <string> #include <string>
#include <memory> #include <memory>
...@@ -104,4 +104,4 @@ public: ...@@ -104,4 +104,4 @@ public:
}; };
} // namespace Aidge } // namespace Aidge
#endif // STIMULI_H #endif // AIDGE_CORE_STIMULI_STIMULUS_H_
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment