Skip to content

Commit f09b8c2

Browse files
committed
Merge branch 'master' of github.com:BehaviorTree/BehaviorTree.CPP
2 parents 0d1e2e2 + 3c62813 commit f09b8c2

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Doxygen GitHub Pages Deploy Action
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- uses: DenverCoder1/doxygen-github-pages-action@v2.0.0
16+
with:
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
folder: doc/html

Doxyfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,8 @@ RECURSIVE = YES
864864
# run.
865865

866866
EXCLUDE = ./3rdparty \
867-
./gtest
867+
./gtest \
868+
./include/behaviortree_cpp/contrib
868869

869870
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
870871
# directories that are symbolic links (a Unix file system feature) are excluded

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ to visualize, record, replay and analyze state transitions.
3535

3636
You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/
3737

38+
An automatically generated API documentation can be found here: https://BehaviorTree.github.io/BehaviorTree.CPP/
39+
3840
If the documentation doesn't answer your questions and/or you want to
3941
connect with the other **BT.CPP** users, visit [our forum](https://github.com/BehaviorTree/BehaviorTree.CPP/discussions)
4042

include/behaviortree_cpp/utils/safe_any.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class Any
134134
}
135135

136136
// copy the value (casting into dst). We preserve the destination type.
137-
void copyInto(Any& dst);
137+
void copyInto(Any& dst) const;
138138

139139
// this is different from any_cast, because if allows safe
140140
// conversions between arithmetic values and from/to string.
@@ -321,7 +321,7 @@ inline bool Any::isIntegral() const
321321
return _any.type() == typeid(int64_t) || _any.type() == typeid(uint64_t);
322322
}
323323

324-
inline void Any::copyInto(Any& dst)
324+
inline void Any::copyInto(Any& dst) const
325325
{
326326
if(dst.empty())
327327
{

0 commit comments

Comments
 (0)