Skip to content
Snippets Groups Projects
Commit 6bb4fc79 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix few warnings

parent a24458a0
No related branches found
No related tags found
1 merge request!54Feature/language coverage
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <language/ast/ASTNode.hpp> #include <language/ast/ASTNode.hpp>
#include <language/node_processor/INodeProcessor.hpp> #include <language/node_processor/INodeProcessor.hpp>
#include <language/utils/SymbolTable.hpp>
class DoWhileProcessor final : public INodeProcessor class DoWhileProcessor final : public INodeProcessor
{ {
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <language/ast/ASTNode.hpp> #include <language/ast/ASTNode.hpp>
#include <language/node_processor/INodeProcessor.hpp> #include <language/node_processor/INodeProcessor.hpp>
#include <language/utils/SymbolTable.hpp>
class ForProcessor final : public INodeProcessor class ForProcessor final : public INodeProcessor
{ {
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <language/ast/ASTNode.hpp> #include <language/ast/ASTNode.hpp>
#include <language/node_processor/INodeProcessor.hpp> #include <language/node_processor/INodeProcessor.hpp>
#include <language/utils/SymbolTable.hpp>
class WhileProcessor final : public INodeProcessor class WhileProcessor final : public INodeProcessor
{ {
......
...@@ -5,12 +5,12 @@ enum class ZeroType ...@@ -5,12 +5,12 @@ enum class ZeroType
{ {
zero zero
}; };
constexpr ZeroType zero = ZeroType::zero; constexpr inline ZeroType zero = ZeroType::zero;
enum class IdentityType enum class IdentityType
{ {
identity identity
}; };
constexpr IdentityType identity = IdentityType::identity; constexpr inline IdentityType identity = IdentityType::identity;
#endif // TYPES_HPP #endif // TYPES_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment