Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e27e8e

Browse files
author
Davide Faconti
committed
file renamed
1 parent 4bfd6da commit 2e27e8e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ add_executable(t04_blackboard t04_blackboard.cpp )
3434
target_link_libraries(t04_blackboard movebase_node ${BEHAVIOR_TREE_LIBRARIES} )
3535

3636

37-
add_executable(crossdoor_example crossdoor_example.cpp )
38-
target_link_libraries(crossdoor_example crossdoor_nodes ${BEHAVIOR_TREE_LIBRARIES} )
37+
add_executable(t05_crossdoor t05_crossdoor.cpp )
38+
target_link_libraries(t05_crossdoor crossdoor_nodes ${BEHAVIOR_TREE_LIBRARIES} )

examples/t01_programmatic_tree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ int main()
1919
// sequence_root will be the root of our tree
2020
BT::SequenceNode sequence_root("sequence");
2121

22-
// Simple functions can be wrapped inside in ActionNodeBase
22+
// Function pointers can be wrapped inside ActionNodeBase
2323
// using the SimpleActionNode
2424
SimpleActionNode say_hello("action_hello", std::bind(SayHello) );
2525

File renamed without changes.

0 commit comments

Comments
 (0)