[libcalamares] Fix constness issue (gcc reported)
This commit is contained in:
parent
1dfb25372b
commit
3ee53435c5
@ -220,12 +220,12 @@ public:
|
|||||||
struct Pointer
|
struct Pointer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit Pointer( void* p )
|
explicit Pointer( const void* p )
|
||||||
: ptr( p )
|
: ptr( p )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
const void* ptr;
|
const void* const ptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @brief output operator for DebugRow */
|
/** @brief output operator for DebugRow */
|
||||||
|
Loading…
Reference in New Issue
Block a user