1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-08 21:36:00 +00:00

improvements in documentation

This commit is contained in:
Zeno Rogue
2019-08-10 19:30:21 +02:00
parent 8b1c7bffe4
commit 50e4990a76
6 changed files with 39 additions and 21 deletions

View File

@@ -190,7 +190,7 @@ template<class T> T* tailored_alloc(int degree) {
return result;
}
/** Counterpart to @see tailored_alloc. */
/** Counterpart to tailored_alloc(). */
template<class T> void tailored_delete(T* x) {
x->~T();
delete[] ((char*) (x));
@@ -206,7 +206,7 @@ extern int hrand(int);
/** reverse directions are currently not implemented for heptagons */
inline vector<int> reverse_directions(struct heptagon *c, int i) { throw "unimplemented"; }
/** the walker structure is used for walking on surfaces defined via @see connection_table. @connection_table */
/** the walker structure is used for walking on surfaces defined via \ref connection_table. */
template<class T> struct walker {
/** where we are at */
T *at;