Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 15, 2009, 1:43:16 PM (15 years ago)
Author:
rgrieder
Message:

Build fix for Visual Studio 2005: Removed const qualifiers in GametypeInfo.
The problem is a compiler bug with template type deduction and const member functions.
I have made a post in the forum: https://forum.orxonox.net/viewtopic.php?f=6&t=352

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/objects/infos/GametypeInfo.h

    r3099 r3178  
    5959                { return this->hudtemplate_; }
    6060
    61             void sendAnnounceMessage(const std::string& message) const;
    62             void sendAnnounceMessage(const std::string& message, unsigned int clientID) const;
    63             void sendKillMessage(const std::string& message, unsigned int clientID) const;
    64             void sendDeathMessage(const std::string& message, unsigned int clientID) const;
     61            void sendAnnounceMessage(const std::string& message);
     62            void sendAnnounceMessage(const std::string& message, unsigned int clientID);
     63            void sendKillMessage(const std::string& message, unsigned int clientID);
     64            void sendDeathMessage(const std::string& message, unsigned int clientID);
    6565
    66             void dispatchAnnounceMessage(const std::string& message) const;
    67             void dispatchKillMessage(const std::string& message) const;
    68             void dispatchDeathMessage(const std::string& message) const;
     66            void dispatchAnnounceMessage(const std::string& message);
     67            void dispatchKillMessage(const std::string& message);
     68            void dispatchDeathMessage(const std::string& message);
    6969
    7070        private:
Note: See TracChangeset for help on using the changeset viewer.