Skip to content

Commit

Permalink
Move tpp back to include, avoid it shows up at user src file
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocky14683 committed Mar 19, 2024
1 parent a2788c5 commit 00aaa2b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ EXCLUDE_SRC_FROM_LIB+=$(foreach file, $(SRCDIR)/main,$(foreach cext,$(CEXTS),$(f
# files that get distributed to every user (beyond your source archive) - add
# whatever files you want here. This line is configured to add all header files
# that are in the the include directory get exported
TEMPLATE_FILES=$(INCDIR)/VOSS/** $(SRCDIR)/VOSS/**/*.tpp
TEMPLATE_FILES=$(INCDIR)/VOSS/**

.DEFAULT_GOAL=quick

Expand Down
2 changes: 1 addition & 1 deletion include/VOSS/chassis/AbstractChassis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ class AbstractChassis {
} // namespace voss::chassis

//don't remove this include
#include "../src/VOSS/chassis/AbstractChassis.tpp"
#include "AbstractChassis.tpp"
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once
#include "pros/llemu.hpp"
#include "pros/rtos.hpp"
#include "VOSS/chassis/AbstractChassis.hpp"
#include "VOSS/exit_conditions/AbstractExitCondition.hpp"
#include "../../pros/llemu.hpp"
#include "../../pros/rtos.hpp"
#include "../exit_conditions/AbstractExitCondition.hpp"
#include "AbstractChassis.hpp"

#include <cmath>

Expand Down

0 comments on commit 00aaa2b

Please sign in to comment.