mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[libcalamares] Fix constness of functions
This commit is contained in:
parent
aec066359a
commit
03df5f6891
2 changed files with 4 additions and 4 deletions
|
@ -27,14 +27,14 @@ using ::Device;
|
|||
using ::Partition;
|
||||
|
||||
bool
|
||||
isPartitionFreeSpace( Partition* partition )
|
||||
isPartitionFreeSpace( const Partition* partition )
|
||||
{
|
||||
return partition->roles().has( PartitionRole::Unallocated );
|
||||
}
|
||||
|
||||
|
||||
bool
|
||||
isPartitionNew( Partition* partition )
|
||||
isPartitionNew( const Partition* partition )
|
||||
{
|
||||
#if defined( WITH_KPMCORE4API )
|
||||
constexpr auto NewState = Partition::State::New;
|
||||
|
|
|
@ -34,14 +34,14 @@ using ::Device;
|
|||
using ::Partition;
|
||||
|
||||
/** @brief Is this a free-space area? */
|
||||
bool isPartitionFreeSpace( Partition* );
|
||||
bool isPartitionFreeSpace( const Partition* );
|
||||
|
||||
/** @brief Is this partition newly-to-be-created?
|
||||
*
|
||||
* Returns true if the partition is planned to be created by the installer as
|
||||
* opposed to already existing on the disk.
|
||||
*/
|
||||
bool isPartitionNew( Partition* );
|
||||
bool isPartitionNew( const Partition* );
|
||||
|
||||
/**
|
||||
* Iterates on all devices and return the first partition which is (already)
|
||||
|
|
Loading…
Add table
Reference in a new issue