mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
14 lines
437 B
Diff
14 lines
437 B
Diff
This patch is needed to fix compilation error on gcc 4.5+
|
|
===================================================================
|
|
--- a/src/ppdfile.cpp
|
|
+++ b/src/ppdfile.cpp
|
|
@@ -282,7 +282,7 @@
|
|
* Opérateur d'assignation
|
|
* Assignment operator
|
|
*/
|
|
-void PPDFile::Value::operator = (const PPDFile::Value::Value &val)
|
|
+void PPDFile::Value::operator = (const PPDFile::Value &val)
|
|
{
|
|
if (_preformatted)
|
|
delete[] _preformatted;
|