Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 131296
Collapse All | Expand All

(-)file_not_specified_in_diff (-7 / +7 lines)
Line  Link Here
0
-- src/Lib/Network/Address.hpp
0
++ src/Lib/Network/Address.hpp
Lines 34-40 Link Here
34
    /** resolves a hostname or IP-Number together with a port and returns a
34
    /** resolves a hostname or IP-Number together with a port and returns a
35
     * new Address object.
35
     * new Address object.
36
     */
36
     */
37
    static Address Address::resolve(const std::string& name, uint16_t port);
37
    static Address resolve(const std::string& name, uint16_t port);
38
38
39
    /** returns the ip address of this Address as string */
39
    /** returns the ip address of this Address as string */
40
    std::string getIP() const;
40
    std::string getIP() const;
41
-- src/NetPanzer/Classes/PlayerState.hpp
41
++ src/NetPanzer/Classes/PlayerState.hpp
Lines 81-88 Link Here
81
public:
81
public:
82
    PlayerUnitConfig unit_config;
82
    PlayerUnitConfig unit_config;
83
83
84
    PlayerState::PlayerState();
84
    PlayerState();
85
    PlayerState::PlayerState(const PlayerState& other);
85
    PlayerState(const PlayerState& other);
86
86
87
    void operator= (const PlayerState& other);
87
    void operator= (const PlayerState& other);
88
88
89
-- src/NetPanzer/Interfaces/Console.cpp
89
++ src/NetPanzer/Interfaces/Console.cpp
Lines 46-52 Link Here
46
        setp(buf, buf+sizeof(buf));
46
        setp(buf, buf+sizeof(buf));
47
    }
47
    }
48
48
49
    FileStampStreamBuf::~FileStampStreamBuf()
49
    ~FileStampStreamBuf()
50
    {
50
    {
51
        sync();
51
        sync();
52
        if(file)
52
        if(file)

Return to bug 131296