mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-19 20:19:07 +00:00
Remove 'mutable' specification in 'section' class
This commit is contained in:
parent
3a6014d52e
commit
2ced96026d
@ -32,7 +32,6 @@ THE SOFTWARE.
|
||||
|
||||
#include <string>
|
||||
#include <fstream>
|
||||
#include <fstream>
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
#include <typeinfo>
|
||||
|
@ -261,7 +261,7 @@ class section_impl : public section
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
private:
|
||||
mutable T header;
|
||||
T header;
|
||||
Elf_Half index;
|
||||
std::string name;
|
||||
char* data;
|
||||
|
@ -52,7 +52,7 @@ THE SOFTWARE.
|
||||
virtual void set_##NAME( TYPE value ) = 0
|
||||
|
||||
#define ELFIO_GET_SET_ACCESS_DECL( TYPE, NAME ) \
|
||||
virtual TYPE get_##NAME() const = 0; \
|
||||
virtual TYPE get_##NAME() const = 0; \
|
||||
virtual void set_##NAME( TYPE value ) = 0
|
||||
|
||||
namespace ELFIO {
|
||||
|
Loading…
Reference in New Issue
Block a user