Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 19, 2015, 7:55:11 PM (9 years ago)
Author:
muemart
Message:
  • Fixed some suspicious virtual function signatures
  • Fixed some clang warnings (and errors in the last commit, forgot to mention that)
  • Fix compilation without pch
  • Hack "override" keyword support into Tolua++
Location:
code/branches/cpp11_v2/src/libraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/core/config/SettingsConfigFile.h

    r10769 r10818  
    6868            ~SettingsConfigFile();
    6969
    70             void load(); // tolua_export
     70            void load() override; // tolua_export
    7171            void setFilename(const std::string& filename); // tolua_export
    7272            void clean(bool bCleanComments = false); // tolua_export
  • code/branches/cpp11_v2/src/libraries/util/Math.h

    r10813 r10818  
    182182    {
    183183        // Default, raise a compiler error without including large boost header cascade.
    184         T temp();
     184        T temp{};
    185185        *********temp; // If you reach this code, you abused zeroise()!
    186186        return temp;
Note: See TracChangeset for help on using the changeset viewer.