ggandda / simd-cxx

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

Typo / compile error & wrong policy kind in qos.hpp #8

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
dds/qos.hpp line 38:

    void set_reliable(DDS::Duration_t timeout) {
      this->reliability.kind = DDS::BEST_EFFORT_RELIABILITY_QOS;
      this->reliability.max_bloking_time = timeout;
    }

I think that should be 'max_blocking_time' (c is missing) and the policy
should be RELIABLE_RELIABILITY_QOS

What version of the product are you using?

simd-cxx-v0.6.tar.gz

Original issue reported on code.google.com by Simon.McQueen on 17 Feb 2010 at 3:06

GoogleCodeExporter commented 8 years ago
Simon, thanks for submitting this issue. This has now been fixed on the main 
trunk
and will be part of the next release. Concerning the OpenSplice DDS version you
should be able to run SIMD on v4.1. The reason why the mis-spelling was not 
detected
at compile time is due to the fact that none of the examples are currently 
using that
specific method. And as you probably know, in C++ templates are compiled only 
when
actually instantiated (or used).

Original comment by angelo.corsaro@gmail.com on 2 Mar 2010 at 3:35

GoogleCodeExporter commented 8 years ago
Hi Angelo - cool - thanks ! 

BTW - the question "What version of the product are you using ?" wasn't from 
me. The
Google issue tracker template put that in - I was answering below it.

Original comment by Simon.McQueen on 19 Mar 2010 at 12:25