Inline constant

This commit is contained in:
Uwe Seimet 2023-11-15 21:13:26 +01:00
parent 2683d6e16e
commit d59bd7bbc2
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ using namespace std;
class ScsiExecutor
{
// SCSI Execute command supports a byte cound of 65535 bytes
const int BUFFER_SIZE = 65535;
inline static const int BUFFER_SIZE = 65535;
public: