Merge branch 'phoenix' of github.com:InvictusInnovations/fc into phoenix
This commit is contained in:
commit
ee8125050b
3 changed files with 12 additions and 0 deletions
|
|
@ -66,7 +66,11 @@ namespace fc {
|
|||
static char separator_char;
|
||||
|
||||
private:
|
||||
#ifdef _WIN64
|
||||
fwd<boost::filesystem::path,40> _p;
|
||||
#else
|
||||
fwd<boost::filesystem::path,32> _p;
|
||||
#endif
|
||||
};
|
||||
|
||||
class directory_iterator {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,11 @@ namespace fc {
|
|||
~file_mapping();
|
||||
private:
|
||||
friend class mapped_region;
|
||||
#ifdef _WIN64
|
||||
fc::fwd<boost::interprocess::file_mapping,0x38> my;
|
||||
#else
|
||||
fc::fwd<boost::interprocess::file_mapping,0x24> my;
|
||||
#endif
|
||||
};
|
||||
|
||||
class mapped_region {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,11 @@ namespace fc {
|
|||
private:
|
||||
friend class tcp_server;
|
||||
class impl;
|
||||
#ifdef _WIN64
|
||||
fc::fwd<impl,0x68> my;
|
||||
#else
|
||||
fc::fwd<impl,0x44> my;
|
||||
#endif
|
||||
};
|
||||
typedef std::shared_ptr<tcp_socket> tcp_socket_ptr;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue