summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-12 15:24:17 +0100
committerGitHub <noreply@github.com>2022-01-12 15:24:17 +0100
commit585231a17200bec3cf36e9ccbf2b48bf679e2fd4 (patch)
treed99961cbad7a04e8a33d053d055b9f730a5a84dd /core/math
parent4e83fbcd145e2b0a7b0382bff6eb97ad64f3e752 (diff)
parentba2bdc478b9eaad99b6c2a3c860e3dc0fe73a1a6 (diff)
Merge pull request #56492 from akien-mga/remove-author-docstrings
Diffstat (limited to 'core/math')
-rw-r--r--core/math/a_star.h4
-rw-r--r--core/math/disjoint_set.h4
2 files changed, 1 insertions, 7 deletions
diff --git a/core/math/a_star.h b/core/math/a_star.h
index 1839ec7e04..130c202a61 100644
--- a/core/math/a_star.h
+++ b/core/math/a_star.h
@@ -37,9 +37,7 @@
#include "core/templates/oa_hash_map.h"
/**
- A* pathfinding algorithm
-
- @author Juan Linietsky <reduzio@gmail.com>
+ A* pathfinding algorithm.
*/
class AStar : public RefCounted {
diff --git a/core/math/disjoint_set.h b/core/math/disjoint_set.h
index d16c5d3d62..8657dc068e 100644
--- a/core/math/disjoint_set.h
+++ b/core/math/disjoint_set.h
@@ -34,10 +34,6 @@
#include "core/templates/map.h"
#include "core/templates/vector.h"
-/**
- @author Marios Staikopoulos <marios@staik.net>
-*/
-
/* This DisjointSet class uses Find with path compression and Union by rank */
template <typename T, class C = Comparator<T>, class AL = DefaultAllocator>
class DisjointSet {