For those who likes to code ❤ (#113)

This commit is contained in:
devdl11
2021-12-28 14:13:01 +00:00
committed by GitHub
parent 70b162e63b
commit 0860e48cb6
7 changed files with 34 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ private:
* be able to store a Script with default name and its extension, the
* importation status (1 char), the default content "from math import *\n"
* (20 char) and 10 char of free space. */
static constexpr int k_fullFreeSpaceSizeLimit = sizeof(Ion::Storage::record_size_t)+Script::k_defaultScriptNameMaxSize+k_scriptExtensionLength+1+20+10;
static constexpr int k_fullFreeSpaceSizeLimit = sizeof(Ion::Storage::record_size_t)+Script::k_defaultScriptNameMaxSize+k_scriptExtensionLength+1+20+10+1;
};
}