Shift a size_t instead of shifting an int and then converting to size_t.
1 file changed
tree: abeca6b5bcff39fc402c6355fd5e9d5b0033797f
  1. configuration/
  2. doc/
  3. examples/
  4. extras/
  5. include/
  6. src/
  7. tests/
  8. .gitignore
  9. .kdev_include_paths
  10. .travis.yml
  11. CMakeLists.txt
  12. COPYING
  13. filter_gcc_error.sh
  14. find_unused_types.sh
  15. fruit.kdev4
  16. postsubmit.sh
  17. README.md
  18. run_benchs.sh
  19. test_coverage.sh
  20. travis_ci_before_install_linux.sh
  21. travis_ci_before_install_osx.sh
  22. travis_ci_install_linux.sh
  23. travis_ci_install_osx.sh
  24. valgrind_suppressions.supp
README.md

Build Status

Fruit is a dependency injection framework for C++, loosely inspired by the Guice framework for Java. It uses C++ metaprogramming together with some new C++11 features to detect most injection problems at compile-time. It allows to split the implementation code in "components" (aka modules) that can be assembled to form other components. From a component with no requirements it's then possible to create an injector, that provides an instance of the interfaces exposed by the component.

See the Fruit website for more information, including installation instructions, tutorials and reference documentation.