Merge pull request #266 from viraptor/const_cleanup

Remove invalid const
This commit is contained in:
Charles J. Cliffe 2016-01-26 21:50:42 -05:00
commit a2420438ee
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ std::string SDRDeviceInfo::getDeviceId() {
return deviceId;
}
const int SDRDeviceInfo::getIndex() const {
int SDRDeviceInfo::getIndex() const {
return index;
}

View File

@ -85,7 +85,7 @@ public:
std::string getDeviceId();
const int getIndex() const;
int getIndex() const;
void setIndex(const int index);
bool isAvailable() const;