Remove constexpr keyword from HWDeviceId::getFileDescriptor method
Change-Id: I9426c211edfbbca48e0b6c55886f79269e60232f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
7c5af49e05
commit
f24b48bc58
|
@ -14,7 +14,7 @@ class HwDeviceId : NonCopyableClass {
|
|||
public:
|
||||
HwDeviceId(int fileDescriptorIn) : fileDescriptor(fileDescriptorIn) {}
|
||||
~HwDeviceId();
|
||||
constexpr int getFileDescriptor() const { return fileDescriptor; }
|
||||
int getFileDescriptor() const { return fileDescriptor; }
|
||||
|
||||
protected:
|
||||
const int fileDescriptor;
|
||||
|
|
Loading…
Reference in New Issue