* spot/tl/formula.hh: Fix some comments.
This commit is contained in:
parent
71e2490643
commit
1a5de86c1e
1 changed files with 3 additions and 3 deletions
|
|
@ -662,9 +662,9 @@ namespace spot
|
||||||
|
|
||||||
/// \brief Create a null formula.
|
/// \brief Create a null formula.
|
||||||
///
|
///
|
||||||
/// This could be used to default initialize a formula, however
|
/// This could be used to default-initialize a formula, however
|
||||||
/// null formula should be short lived: most algorithms and member
|
/// null formula should be short lived: most algorithms and member
|
||||||
/// function assume that formulas should not be null.
|
/// functions assume that formulas should not be null.
|
||||||
formula(std::nullptr_t) noexcept
|
formula(std::nullptr_t) noexcept
|
||||||
: ptr_(nullptr)
|
: ptr_(nullptr)
|
||||||
{
|
{
|
||||||
|
|
@ -684,7 +684,7 @@ namespace spot
|
||||||
ptr_->clone();
|
ptr_->clone();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Clone a formula.
|
/// Move-construct a formula.
|
||||||
formula(formula&& f) noexcept
|
formula(formula&& f) noexcept
|
||||||
: ptr_(f.ptr_)
|
: ptr_(f.ptr_)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue