Skip to content
Snippets Groups Projects
Commit cf883cf4 authored by Felix Weiglhofer's avatar Felix Weiglhofer
Browse files

stsxyter::Message: fix GPU compilation.

parent 25c503a9
No related branches found
No related tags found
1 merge request!1714stsxyter::Message: fix GPU compilation.
Pipeline #27990 passed
......@@ -174,17 +174,17 @@ namespace stsxyter
uint32_t fuData; // main and only storage field for the message
public:
Message() : fuData(0) {}
XPU_D Message() : fuData(0) {}
Message(const Message& src) : fuData(src.fuData) {}
XPU_D Message(const Message& src) : fuData(src.fuData) {}
Message(uint32_t uDataIn) : fuData(uDataIn) {}
XPU_D Message(uint32_t uDataIn) : fuData(uDataIn) {}
~Message() {};
XPU_D ~Message(){};
void assign(const Message& src) { fuData = src.fuData; }
XPU_D void assign(const Message& src) { fuData = src.fuData; }
Message& operator=(const Message& src)
XPU_D Message& operator=(const Message& src)
{
assign(src);
return *this;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment