mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-28 18:05:36 -04:00
Cleanup: remove duplicate #define
This commit is contained in:
parent
99b00229b6
commit
829f72363e
1 changed files with 2 additions and 7 deletions
|
@ -34,14 +34,12 @@
|
|||
|
||||
namespace PartitionActions
|
||||
{
|
||||
#define MiB * static_cast< qint64 >( 1024 ) * 1024
|
||||
#define GiB * static_cast< qint64 >( 1024 ) * 1024 * 1024
|
||||
|
||||
qint64
|
||||
swapSuggestion( const qint64 availableSpaceB )
|
||||
{
|
||||
|
||||
#define MiB * static_cast< qint64 >( 1024 ) * 1024
|
||||
#define GiB * static_cast< qint64 >( 1024 ) * 1024 * 1024
|
||||
|
||||
// swap(mem) = max(2, 2 * mem), if mem < 2 GiB
|
||||
// = mem, if 2 GiB <= mem < 8 GiB
|
||||
// = mem / 2, if 8 GIB <= mem < 64 GiB
|
||||
|
@ -110,9 +108,6 @@ doAutopartition( PartitionCoreModule* core, Device* dev, const QString& luksPass
|
|||
if ( FileSystem::typeForName( defaultFsType ) == FileSystem::Unknown )
|
||||
defaultFsType = "ext4";
|
||||
|
||||
#define MiB * static_cast< qint64 >( 1024 ) * 1024
|
||||
#define GiB * static_cast< qint64 >( 1024 ) * 1024 * 1024
|
||||
|
||||
// Partition sizes are expressed in MiB, should be multiples of
|
||||
// the logical sector size (usually 512B).
|
||||
int uefisys_part_size = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue