summaryrefslogtreecommitdiff
path: root/gpt.h
diff options
context:
space:
mode:
authorRod Smith <rodsmith@rodsbooks.com>2018-07-05 16:50:13 -0400
committerRod Smith <rodsmith@rodsbooks.com>2018-07-05 16:50:13 -0400
commit9ae60195b9d24c01f535ade5b7bcf0e63c0600be (patch)
tree3f7c35f56cb9222be3081c57b3f7d61af3390483 /gpt.h
parent8dab6f22ee54e63d98cf303d16702794d091bcbb (diff)
downloadsgdisk-9ae60195b9d24c01f535ade5b7bcf0e63c0600be.tar.gz
Added explicit copy constructors and made other tweaks to avoid
compiler complaints.
Diffstat (limited to 'gpt.h')
-rw-r--r--gpt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gpt.h b/gpt.h
index f4bf470..a5be961 100644
--- a/gpt.h
+++ b/gpt.h
@@ -92,6 +92,7 @@ protected:
public:
// Basic necessary functions....
GPTData(void);
+ GPTData(const GPTData &);
GPTData(string deviceFilename);
virtual ~GPTData(void);
GPTData & operator=(const GPTData & orig);