Skip to content
Snippets Groups Projects
Commit 3c609324 authored by Sonia Minolli's avatar Sonia Minolli
Browse files

compil update

parent 2d046827
Branches
Tags
No related merge requests found
......@@ -116,18 +116,15 @@ namespace DataFitter_ns
std::copy(da.LongSeq->get_buffer(), da.LongSeq->get_buffer() + da.dim_x, vec.begin());
break;
#if (TANGO_VERSION_MAJOR >= 8)
//#pragma message "TANGO_VERSION_MAJOR >= 8" -- compil win32 nexeya
#pragma message "TANGO_VERSION_MAJOR >= 8"
case Tango::DEV_ULONG:
//std::copy( da.get_ULong_data()->get_buffer(), da.get_ULong_data()->get_buffer() + da.dim_x, vec.begin() );
std::copy(da.ULongSeq->get_buffer(), da.ULongSeq->get_buffer() + da.dim_x, vec.begin());
std::copy( da.get_ULong_data()->get_buffer(), da.get_ULong_data()->get_buffer() + da.dim_x, vec.begin() );
break;
case Tango::DEV_LONG64:
//std::copy( da.get_Long64_data()->get_buffer(), da.get_Long64_data()->get_buffer() + da.dim_x, vec.begin() );
std::copy(da.Long64Seq->get_buffer(), da.Long64Seq->get_buffer() + da.dim_x, vec.begin());
std::copy( da.get_Long64_data()->get_buffer(), da.get_Long64_data()->get_buffer() + da.dim_x, vec.begin() );
break;
case Tango::DEV_ULONG64:
//std::copy( da.get_ULong64_data()->get_buffer(), da.get_ULong64_data()->get_buffer() + da.dim_x, vec.begin() );
std::copy(da.ULong64Seq->get_buffer(), da.ULong64Seq->get_buffer() + da.dim_x, vec.begin());
std::copy( da.get_ULong64_data()->get_buffer(), da.get_ULong64_data()->get_buffer() + da.dim_x, vec.begin() );
break;
#else
#pragma message "TANGO_VERSION_MAJOR < 8"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment