blob: f81008c45fa3c4dd529862000e5c55975305c296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
--- src/Lib/Network/Address.hpp
+++ src/Lib/Network/Address.hpp
@@ -34,7 +34,7 @@
/** resolves a hostname or IP-Number together with a port and returns a
* new Address object.
*/
- static Address Address::resolve(const std::string& name, uint16_t port);
+ static Address resolve(const std::string& name, uint16_t port);
/** returns the ip address of this Address as string */
std::string getIP() const;
--- src/NetPanzer/Classes/PlayerState.hpp
+++ src/NetPanzer/Classes/PlayerState.hpp
@@ -81,8 +81,8 @@
public:
PlayerUnitConfig unit_config;
- PlayerState::PlayerState();
- PlayerState::PlayerState(const PlayerState& other);
+ PlayerState();
+ PlayerState(const PlayerState& other);
void operator= (const PlayerState& other);
--- src/NetPanzer/Interfaces/Console.cpp
+++ src/NetPanzer/Interfaces/Console.cpp
@@ -46,7 +46,7 @@
setp(buf, buf+sizeof(buf));
}
- FileStampStreamBuf::~FileStampStreamBuf()
+ ~FileStampStreamBuf()
{
sync();
if(file)
|