-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unit tests for bug 981: valid and invalid usage of ternary operator
- Loading branch information
Showing
4 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include "../Eigen/Core" | ||
|
||
using namespace Eigen; | ||
|
||
int main(int argc,char **) | ||
{ | ||
VectorXf a(10), b(10); | ||
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD | ||
b = argc>1 ? 2*a : -a; | ||
#else | ||
b = argc>1 ? 2*a : VectorXf(-a); | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include "../Eigen/Core" | ||
|
||
using namespace Eigen; | ||
|
||
int main(int argc,char **) | ||
{ | ||
VectorXf a(10), b(10); | ||
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD | ||
b = argc>1 ? 2*a : a+a; | ||
#else | ||
b = argc>1 ? VectorXf(2*a) : VectorXf(a+a); | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters