Skip to content

Commit

Permalink
Fix warning in Pango move constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed Aug 16, 2018
1 parent 4f75a1d commit a62ad12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pango.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace ecolab
}
#if defined(__cplusplus) && __cplusplus>=201103L
Pango(Pango&& x): cairo(x.cairo), layout(x.layout), fd(x.fd),
bbox(x.bbox), angle(angle)
bbox(x.bbox), angle(x.angle)
{x.layout=nullptr; x.fd=nullptr;}
#endif
/// set text to be displayed in pango markup language
Expand Down

0 comments on commit a62ad12

Please sign in to comment.