diff options
author | Michele Calgaro <[email protected]> | 2024-10-08 13:13:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-08 13:13:05 +0900 |
commit | f63f3a0b0192532e555ea1115afdb3fb821a8972 (patch) | |
tree | 0d66edf077ab24f0c8b34063c4eef113ee9c0cef | |
parent | e22af1c0a03ce2cb14b051edfc8ee11b31896341 (diff) | |
download | tdelibs-f63f3a0b0192532e555ea1115afdb3fb821a8972.tar.gz tdelibs-f63f3a0b0192532e555ea1115afdb3fb821a8972.zip |
Fix syntax error when using tqmoc on tdestoragedevice.h
TDE now requires c++11, so the conditional code is no longer required.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | tdecore/tdehw/tdestoragedevice.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tdecore/tdehw/tdestoragedevice.h b/tdecore/tdehw/tdestoragedevice.h index ad0468ed9..88a387377 100644 --- a/tdecore/tdehw/tdestoragedevice.h +++ b/tdecore/tdehw/tdestoragedevice.h @@ -28,11 +28,7 @@ struct crypt_device; // Keep readDiskDeviceSubtypeFromString() in tdehardwaredevices.cpp in sync with this enum namespace TDEDiskDeviceType { -#if __cplusplus >= 201103L enum TDEDiskDeviceType : unsigned long long { -#else -enum TDEDiskDeviceType { -#endif Null = 0x0000000000000000ULL, MediaDevice = 0x0000000000000001ULL, Floppy = 0x0000000000000002ULL, |