Remove unnecessary semicolons.

This commit is contained in:
Jonathan Freed 2024-04-29 21:31:26 +00:00 committed by Rasmus Munk Larsen
parent ae5280aa8d
commit d5524fc57b
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ struct eigen_random_device {
using ReturnType = int;
static constexpr int Entropy = meta_floor_log2<(unsigned int)(RAND_MAX) + 1>::value;
static constexpr ReturnType Highest = RAND_MAX;
static EIGEN_DEVICE_FUNC inline ReturnType run() { return std::rand(); };
static EIGEN_DEVICE_FUNC inline ReturnType run() { return std::rand(); }
};
// Fill a built-in unsigned integer with numRandomBits beginning with the least significant bit

View File

@ -260,7 +260,7 @@ class SymbolValue<Tag, internal::FixedInt<N>> : public BaseExpr<SymbolValue<Tag,
constexpr SymbolValue() = default;
/** Default constructor from the value \a val */
constexpr SymbolValue(internal::FixedInt<N>){};
constexpr SymbolValue(internal::FixedInt<N>) {}
/** \returns the stored value of the symbol */
constexpr Index value() const { return static_cast<Index>(N); }