|
|
@11007
|
9 years |
landauf |
made some enums in core library strongly typed. for other enums in …
|
|
|
@10994
|
9 years |
landauf |
using some constexpr
|
|
|
@10993
|
9 years |
landauf |
using constructor delegation
|
|
|
@10992
|
9 years |
landauf |
for all non-copyable classes (i.e. those with deleted …
|
|
|
@10990
|
9 years |
landauf |
use '= delete' to explicitly delete unimplemented copy-constructors …
|
|
|
@10987
|
9 years |
landauf |
now it also works with MSVC to wrap an std::function in a Functor
|
|
|
@10986
|
9 years |
landauf |
use the existing class 'FunctorPointer' to store the callable object. …
|
|
|
@10985
|
9 years |
landauf |
call function without using a touple
|
|
|
@10982
|
9 years |
landauf |
now it's again possible to use std::type_info instead of type_index
|
|
|
@10981
|
9 years |
landauf |
not sure what's better: limiting functor to 5 arguments or having …
|
|
|
@10980
|
9 years |
landauf |
getHeaderIdentifier(): return the typeid of the actual function …
|
|
|
@10979
|
9 years |
landauf |
gcc doesn't allow an explicit spezialization of a function-template …
|
|
|
@10975
|
9 years |
muemart |
Extend Functor to handle any callable objects (lambdas!). Had to …
|
|
|
@10919
|
9 years |
landauf |
use range-based for-loop where it makes sense (e.g. ObjectList)
|
|
|
@10918
|
9 years |
muemart |
Use emplace_back instead of push_back if beneficial
|
|
|
@10916
|
9 years |
landauf |
use actual types instead of 'auto'. only exception is for complicated …
|
|
|
@10876
|
9 years |
muemart |
Use variadic templates for Functor
Had to put on my template hat for …
|
|
|
@10845
|
9 years |
landauf |
always use 'virtual' in the declaration of virtual functions even if …
|
|
|
@10828
|
9 years |
landauf |
updated documentation
|
|
|
@10825
|
9 years |
landauf |
use std::shared_ptr instead of orxonox::SharedPtr for FunctorPtr and …
|
|
|
@10821
|
9 years |
muemart |
Run clang-modernize -loop-convert
- Again, not all possible loops were …
|
|
|
@10817
|
9 years |
muemart |
Run clang-modernize -add-override
A few notes:
- There are probably …
|
|
|
@10781
|
9 years |
landauf |
in C++11 it's now possible to define 'typedefs' for templates (called …
|
|
|
@10775
|
9 years |
landauf |
using std::bind and std::function instead of boost::bind and …
|
|
|
@10769
|
9 years |
landauf |
no space needed anymore between closing template brackets ('> >' → '>>')
|
|
|
@10768
|
9 years |
landauf |
replace '0' by 'nullptr'
|
|
|
@10765
|
9 years |
landauf |
replace 'NULL' by 'nullptr'
|
|
|
@10732
|
9 years |
landauf |
created new branch for cpp11
|
|
copied from code/trunk/src/libraries/core/command:
|
|
|
@10624
|
9 years |
landauf |
merged branch core7 back to trunk
|