libexpr/nixexpr.hh: Remove redundant inline

This is redundant since definitions in C++ record are implicitly inline-ed.

Co-authored-by: Yingchi Long <i@lyc.dev>
This commit is contained in:
Robert Hensing 2023-09-25 17:51:17 +01:00 committed by GitHub
parent bf8deb4991
commit bd24176ac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,7 +156,7 @@ std::string showAttrPath(const SymbolTable & symbols, const AttrPath & attrPath)
struct Expr
{
static unsigned long nrExprs;
inline Expr() {
Expr() {
nrExprs++;
}
virtual ~Expr() { };