mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix a couple of new MSVC 2010 warnings
Compiler complains because in Book we have a d'tor but not copy c'tor and assignement operator (warning C4511 and C4512), note that after adding them (just declared) you now need also default c'tor ! No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
74203e181d
commit
711ef615c7
1 changed files with 3 additions and 0 deletions
|
@ -53,7 +53,10 @@ struct BookEntry {
|
||||||
};
|
};
|
||||||
|
|
||||||
class Book : private std::ifstream {
|
class Book : private std::ifstream {
|
||||||
|
Book(const Book&); // just decleared..
|
||||||
|
Book& operator=(const Book&); // ..to avoid a warning
|
||||||
public:
|
public:
|
||||||
|
Book() {}
|
||||||
~Book();
|
~Book();
|
||||||
void open(const std::string& fName);
|
void open(const std::string& fName);
|
||||||
void close();
|
void close();
|
||||||
|
|
Loading…
Add table
Reference in a new issue