1. 17 Şub, 2016 7 kayıt (commit)
  2. 16 Şub, 2016 3 kayıt (commit)
  3. 13 Şub, 2016 2 kayıt (commit)
  4. 12 Şub, 2016 1 kayıt (commit)
  5. 11 Şub, 2016 4 kayıt (commit)
  6. 10 Şub, 2016 2 kayıt (commit)
  7. 08 Şub, 2016 2 kayıt (commit)
  8. 07 Şub, 2016 1 kayıt (commit)
  9. 28 Ock, 2016 1 kayıt (commit)
  10. 27 Ock, 2016 1 kayıt (commit)
    • Jiří Techet's avatar
      Remove scope prefix of variable types · 6b2e99d0
      Jiří Techet yazdı
      We only perform search based on variable name so if a variable is e.g. of
      the type std::Foo, we can drop the std:: prefix and search only for the
      Foo type.
      6b2e99d0
  11. 26 Ock, 2016 1 kayıt (commit)
  12. 25 Ock, 2016 4 kayıt (commit)
  13. 24 Ock, 2016 4 kayıt (commit)
  14. 23 Ock, 2016 2 kayıt (commit)
    • Colomban Wendling's avatar
      c++: Fix parsing of C++11 raw string literals · a14aa908
      Colomban Wendling yazdı
      See http://en.cppreference.com/w/cpp/language/string_literal
      
      Closes #877.
      
      ---
      
      This contains a pretty ugly hack to fetch the previous character, in
      order not to get fooled by string concatenation hidden behind a macro,
      like in `FOUR"five"`, which is not a raw string literal but simply the
      identifier `FOUR` followed by the string `"five"`.
      
      While this may sound uncommon, it is not and lead to complaints [2][3]
      when Scintilla [1] broke this when they introduced C++11 raw string
      literal support themselves.
      
      The implementation here still contains a bug with line continuations: a
      raw literal of the form:
      
      ```c
      const char *str = R\
      "xxx(...)xxx";
      ```
      
      is not properly recognized as such, although it's perfectly valid (yet
      probably very uncommon).  For the record, Scintilla has also suffers
      from this but nobody complained about it yet.
      
      [1] http://scintilla.org/
      [2] https://sourceforge.net/p/scintilla/bugs/1207/
      [3] https://sourceforge.net/p/scintilla/bugs/1454/
      a14aa908
    • Enrico Tröger's avatar
      Remove obsolete scripts/plugin_test.c · 632b215f
      Enrico Tröger yazdı
      This script was used in the nightly builds to verify plugins will load
      and have no undefined symbol references. Since the new way plugins
      are built and linked, this is no longer necessary.
      Additionally, this script won't work with new style geany_load_module()
      plugins.
      632b215f
  15. 19 Ock, 2016 3 kayıt (commit)
  16. 18 Ock, 2016 2 kayıt (commit)