mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
13 lines
437 B
Diff
13 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;
|