[eigen-commits] commit/eigen: ggael: commit 45e9c9996da790b55ed9c4b0dfeae49492ac5c46 (HEAD -> memory_fix) |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen-commits Archives
]
- To: eigen-commits@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen-commits] commit/eigen: ggael: commit 45e9c9996da790b55ed9c4b0dfeae49492ac5c46 (HEAD -> memory_fix)
- From: Bitbucket <commits-noreply@xxxxxxxxxxxxx>
- Date: Tue, 03 Apr 2018 15:15:56 +0000 (UTC)
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=bitbucket.org; h=mime-version:content-type:content-transfer-encoding:subject:from:to; s=s1; bh=i46QTH6CWdDWXWTSBHv60mCDUIo=; b=oMfqdUxO+hzLgy9D2Mx9uAz w2GjWwNLqhRS8wSd/amJabOSTF+cQj2f91SVnP7QS7WwRp8j2bVQqhWXLhLEFoMJ hWrWu/YkLLIn5h4vK5pa0nt3gMWvDi01jmZz5nCOIRYi7cz+vtP0LUGybNGywma8 OZZM8zINwvFdLEJWZEYA=
1 new commit in eigen:
https://bitbucket.org/eigen/eigen/commits/4842bb82dc32/
Changeset: 4842bb82dc32
User: ggael
Date: 2018-04-03 15:15:38+00:00
Summary: commit 45e9c9996da790b55ed9c4b0dfeae49492ac5c46 (HEAD -> memory_fix)
Author: George Burgess IV <gbiv@xxxxxxxxxx>
Date: Thu Mar 1 11:20:24 2018 -0800
Prefer `::operator new` to `new`
The C++ standard allows compilers much flexibility with `new`
expressions, including eliding them entirely
(https://godbolt.org/g/yS6i91). However, calls to `operator new` are
required to be treated like opaque function calls.
Since we're calling `new` for side-effects other than allocating heap
memory, we should prefer the less flexible version.
Signed-off-by: George Burgess IV <gbiv@xxxxxxxxxx>
Affected #: 1 file
Repository URL: https://bitbucket.org/eigen/eigen/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.