[libcalamares] Fix constness issue (gcc reported)

This commit is contained in:
Adriaan de Groot 2020-06-23 14:30:12 +02:00
parent 1dfb25372b
commit 3ee53435c5

View File

@ -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 */