Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 committed Dec 6, 2024
1 parent a5825af commit 0deebe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clp_ffi_py/PyObjectCast.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ struct IsPythonObject {
};

/**
* This template const expression is a wrapper of underlying `cValue` stored in `is_python_object`,
* This template const expression is a wrapper of underlying `cValue` stored in `IsPythonObject`,
* which is used to determine whether a type T is a valid Python object type.
* @tparam T
*/
template <typename T> // NOLINTNEXTLINE(readability-identifier-naming)
constexpr bool is_python_object_v{IsPythonObject<T>::cValue};

/**
* The macro to create a specialization of is_python_object for a given type T. Only types that are
* The macro to create a specialization of `IsPythonObject` for a given type T. Only types that are
* marked with this macro will be considered as a valid Python object type.
*/
// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
Expand Down

0 comments on commit 0deebe0

Please sign in to comment.