You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static Simplex_key key(Simplex_handle sh) {
The fact that the function is static is an implementation detail, because it does not use this, but we still want users to call the function with st.key(sh), not ST::key(sh), so we should document that.
Other projects use #ifdef DOXYGEN_RUNNING to enable different code with doxygen vs a real compiler.
The text was updated successfully, but these errors were encountered:
static Simplex_key key(Simplex_handle sh) {
The fact that the function is
static
is an implementation detail, because it does not usethis
, but we still want users to call the function withst.key(sh)
, notST::key(sh)
, so we should document that.Other projects use
#ifdef DOXYGEN_RUNNING
to enable different code with doxygen vs a real compiler.The text was updated successfully, but these errors were encountered: