mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
possible fix of building error in Ubuntu 12.04
NULL was taken as int instead of null pointer; nullptr resolves the ambiguity
This commit is contained in:
parent
844c33d699
commit
b69e759e45
@ -67,13 +67,13 @@ public:
|
|||||||
{
|
{
|
||||||
assert(RF_channel >= 0);
|
assert(RF_channel >= 0);
|
||||||
if (RF_channel == 0){}; // avoid unused param warning
|
if (RF_channel == 0){}; // avoid unused param warning
|
||||||
return NULL; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
|
return nullptr; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
|
||||||
}
|
}
|
||||||
virtual gr::basic_block_sptr get_right_block(int RF_channel)
|
virtual gr::basic_block_sptr get_right_block(int RF_channel)
|
||||||
{
|
{
|
||||||
assert(RF_channel >= 0);
|
assert(RF_channel >= 0);
|
||||||
if (RF_channel == 0){}; // avoid unused param warning
|
if (RF_channel == 0){}; // avoid unused param warning
|
||||||
return NULL; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
|
return nullptr; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user