Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync the fork to the upstream #1

Merged
merged 53 commits into from
Nov 8, 2017
Merged

Commits on Oct 20, 2017

  1. Configuration menu
    Copy the full SHA
    b34b2df View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. Configuration menu
    Copy the full SHA
    a77c829 View commit details
    Browse the repository at this point in the history
  2. Aproposal for a bugfix #1158

    (part 2 latter)
    guy-maurel committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    f291243 View commit details
    Browse the repository at this point in the history
  3. add option_reducer.py

    CDanU committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    8ed237f View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. Configuration menu
    Copy the full SHA
    b5df8bb View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2017

  1. hide compilation warning in gcc < v5 (fixes #1098)

    The warning is a bug in gcc itself, per https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55805,
    so hiding it prevents people using older versions of GCC from assuming there's an issue with uncrustify,
    as happened in #1098.
    waldyrious authored Oct 26, 2017
    Configuration menu
    Copy the full SHA
    bc41097 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2017

  1. add UO_sp_arith_additive

    CDanU committed Oct 27, 2017
    Configuration menu
    Copy the full SHA
    ad4890e View commit details
    Browse the repository at this point in the history
  2. fix typos: ident --> ident

    waldyrious committed Oct 27, 2017
    Configuration menu
    Copy the full SHA
    e26b44f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f6c64e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b97a67a View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2017

  1. Configuration menu
    Copy the full SHA
    f77f54d View commit details
    Browse the repository at this point in the history
  2. Add CT_BRACED_INIT_LIST for C++ 'braced-init-list'

    Quick fix for a 'braced-init-list'.
    Added examples for a 'braced-init-list'.
    KVic committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    81ce3ff View commit details
    Browse the repository at this point in the history
  3. Fix the double indentation with C++ 'using'

    Fixes the issue #1318.
    KVic committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    76ff9be View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2017

  1. Merge pull request #1388 from guy-maurel/WhileSemi

    While semi
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    66fe327 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1390 from CDanU/python-scripts

    add option_reducer.py
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    d967132 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1393 from CDanU/fix-option-name-typo

    rename option UO_align_number_left to UO_align_number_right
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    b3efa8c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1394 from gaoethan/master

    Fix out-of-bounds memory write
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    9356b48 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1396 from waldyrious/patch-1

    suppress invalid compilation warning in gcc < v5 (fixes #1098)
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    da31ea5 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1397 from CDanU/sp_arith_additive

    add UO_sp_arith_additive
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    aa62ac5 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1399 from waldyrious/ident

    distinguish "indent" vs. "ident" vs. "identifier"
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    78980d3 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1404 from KVic/add-ct-braced-init-list

    Add CT_BRACED_INIT_LIST for C++ 'braced-init-list'
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    c0f9db9 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1406 from jibsen/update-appveyor

    Support multiple MSVC versions on AppVeyor
    gmaurel authored Nov 1, 2017
    Configuration menu
    Copy the full SHA
    f83245e View commit details
    Browse the repository at this point in the history
  10. Fix the detection of lambda-expression without lambda-declarator

    Lambda-declarator '( params )' in the lambda-expression is optional.
    The minimum lambda-expression can have the form: [captures] {body}.
    KVic committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    633576a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f77a41b View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2017

  1. Remove header using directives

    Set up 'using namespace' directives are passed into everything that includes
    the header. This can potentially lead to problems if that is not anticipated.
    All using directives therefore are removed from the headers and added, where
    needed, in the cpp files.
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    3636f40 View commit details
    Browse the repository at this point in the history
  2. appy Uncrustify

    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    cd8d808 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2540628 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1407 from KVic/fix-override-as-cpp-qualifier

    Fix 'override' as CT_QUALIFIER for LANG_CPP
    gmaurel authored Nov 2, 2017
    Configuration menu
    Copy the full SHA
    738bd77 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1408 from KVic/fix-optional-lambda-declarator

    Fix the detection of lambda-expression without lambda-declarator
    gmaurel authored Nov 2, 2017
    Configuration menu
    Copy the full SHA
    4e48fcb View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1409 from KVic/fix-using-double-indent

    Fix the double indentation with C++ 'using'
    gmaurel authored Nov 2, 2017
    Configuration menu
    Copy the full SHA
    64280db View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1410 from CDanU/remove-header-using-directives

    Remove header using directives
    gmaurel authored Nov 2, 2017
    Configuration menu
    Copy the full SHA
    d396bff View commit details
    Browse the repository at this point in the history
  8. refactor unc_text::fix_len_idx

    simplifies the function by replacing the parameter reference with a returned
    value
    adds early return check to minimize indent
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    7640cf6 View commit details
    Browse the repository at this point in the history
  9. refactor unc_text::compare

    Calculates max value outside of loop to reduce checks, adds underflow safe
    return subtraction.
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    d6e535a View commit details
    Browse the repository at this point in the history
  10. refactor unc_text::update_logtext

    Uses early return check to minimize indent.
    Adds comments about the symbols that are replaced.
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    3a88c1a View commit details
    Browse the repository at this point in the history
  11. refactor unc_text::equals

    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    5f10b12 View commit details
    Browse the repository at this point in the history
  12. refactor unc_text::set

    adds early return check to minimize indent
    replaces while loop with more appropriate for loops
    removes useless size_t casts
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    7c76a3b View commit details
    Browse the repository at this point in the history
  13. refactor unc_text::resize

    adds early return check to minimize indent
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    8732d87 View commit details
    Browse the repository at this point in the history
  14. refactor unc_text::insert

    removes useless casts
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    e073a1b View commit details
    Browse the repository at this point in the history
  15. refactor unc_text::erase

    removes useless casts
    adds early return check to minimize indent
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    c3bf684 View commit details
    Browse the repository at this point in the history
  16. refactor unc_text::replace

    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    6aa63db View commit details
    Browse the repository at this point in the history
  17. refactor unc_text::startswith

    replaces while loop with more appropriate for loops
    removes
    simplifies loop entrance check
    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    59b3fa7 View commit details
    Browse the repository at this point in the history
  18. refactor unc_text::find

    CDanU committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    da85a0c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    34fb83c View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2017

  1. prevent indent_pse_push SEGV

    CDanU committed Nov 3, 2017
    Configuration menu
    Copy the full SHA
    c44f3e9 View commit details
    Browse the repository at this point in the history
  2. update emscripten interface

    CDanU committed Nov 3, 2017
    Configuration menu
    Copy the full SHA
    b52ce47 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0db7d36 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2017

  1. Merge pull request #1411 from CDanU/misc-refactor

     refactor unc_text.cpp
    gmaurel authored Nov 4, 2017
    Configuration menu
    Copy the full SHA
    0860714 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1412 from guy-maurel/PrepareIssue1142

    Prepare a better logging for issue #1142
    gmaurel authored Nov 4, 2017
    Configuration menu
    Copy the full SHA
    6e01ffd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1416 from CDanU/emscripten_interface

    update emscripten interface
    gmaurel authored Nov 4, 2017
    Configuration menu
    Copy the full SHA
    1470aab View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1418 from CDanU/better-error-msg

    generate better embedded 0 error
    gmaurel authored Nov 4, 2017
    Configuration menu
    Copy the full SHA
    47141d5 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2017

  1. Merge pull request #1414 from CDanU/prevent-segv

    prevent indent_pse_push SEGV
    gmaurel authored Nov 5, 2017
    Configuration menu
    Copy the full SHA
    2e54c92 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    93f9bfe View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1419 from guy-maurel/asmBlock

    Adopt the method from aneesh1127 for #1236
    gmaurel authored Nov 5, 2017
    Configuration menu
    Copy the full SHA
    d5dd0f1 View commit details
    Browse the repository at this point in the history