*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-01-16 03:10:38 +00:00
parent 5914b3400f
commit 430f6e684b
1 changed files with 3 additions and 2 deletions

View File

@ -34,6 +34,7 @@ POSSIBILITY OF SUCH DAMAGE.
#define TORRENT_FILE_HPP_INCLUDED
#include <memory>
#include <stdexcept>
#include <boost/noncopyable.hpp>
#include <boost/filesystem/path.hpp>
@ -55,7 +56,7 @@ namespace libtorrent
class seek_mode
{
friend file;
friend class file;
private:
seek_mode(int v): m_val(v) {}
int m_val;
@ -66,7 +67,7 @@ namespace libtorrent
class open_mode
{
friend file;
friend class file;
public:
open_mode(): m_mask(0) {}