ggandda / simd-cxx

Automatically exported from code.google.com/p/simd-cxx
0 stars 0 forks source link

compilation error when using postcondition (bool condition, const std::string& what) #5

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. try to compile Assert::postcondition (retVal != 0, "my text")

What version of the product are you using? On what operating system?
simd v0.5

Please provide any additional information below.
There is a typing error. Should be called postcondition instead of
poscondition:

inline static void postcondition(bool condition, 
                                const std::string& what) {
      AssertImpl::poscondition(condition,
                   what);
}

Original issue reported on code.google.com by salmiv...@gmail.com on 15 Dec 2009 at 2:03

GoogleCodeExporter commented 8 years ago
Fixed as per ChangeLog entry 2009-12-22  Angelo Corsaro  
<angelo.corsaro@gmail.com>

Original comment by angelo.corsaro@gmail.com on 22 Dec 2009 at 11:01