Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pevisscher committed Sep 3, 2016
1 parent 1d393df commit b274887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plot/include/plot/plot.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class Plot

Plot( Context context );

Plot( AbstractPlot &plot );
Plot( const AbstractPlot &plot );

Plot &AxisStyle( Style style, const std::vector< std::pair< std::string, std::string >> &params = {} );

Expand Down
2 changes: 1 addition & 1 deletion plot/src/plot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#include <assert.h>

PLOTLIB_INLINE Plot::Plot( AbstractPlot &plot )
PLOTLIB_INLINE Plot::Plot( const AbstractPlot &plot )
: Plot()
{
AddPlot( plot );
Expand Down

0 comments on commit b274887

Please sign in to comment.