Skip to content

Commit

Permalink
AURORA: Mark the GFF-based file classes as noncopyable
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Oct 23, 2016
1 parent 00ffb38 commit f7102c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aurora/gdafile.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
#include <vector>
#include <map>

#include <boost/noncopyable.hpp>

#include "src/common/ustring.h"

#include "src/aurora/types.h"
Expand Down Expand Up @@ -56,7 +58,7 @@ namespace Aurora {
* identified by raw row index (since this index is now meaningless),
* but by an "ID" column.
*/
class GDAFile {
class GDAFile : boost::noncopyable {
public:
static const size_t kInvalidColumn = SIZE_MAX;
static const size_t kInvalidRow = SIZE_MAX;
Expand Down

0 comments on commit f7102c5

Please sign in to comment.