Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-04-08 11:47:22 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-04-08 11:47:22 +0300
commit5d1ca45a4ed8138422bc7c78680a931636fad754 (patch)
tree70cf064bb91b223b8cc3fa969564d21c4beeed53 /src/ObjectModel
parent3aa3cf6f26c904f1dacbeff1928f951ad9c1c9d1 (diff)
Corrected case of an include filename
Diffstat (limited to 'src/ObjectModel')
-rw-r--r--src/ObjectModel/Variable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ObjectModel/Variable.cpp b/src/ObjectModel/Variable.cpp
index dbbcad7e..6180dde9 100644
--- a/src/ObjectModel/Variable.cpp
+++ b/src/ObjectModel/Variable.cpp
@@ -6,7 +6,7 @@
*/
#include "Variable.h"
-#include <Platform/Outputmemory.h>
+#include <Platform/OutputMemory.h>
Variable::Variable(const char *str, ExpressionValue pVal, int8_t pScope) noexcept : name(str), val(pVal), scope(pScope)
{