Skip to content
Snippets Groups Projects
  1. Aug 16, 2021
  2. Aug 13, 2021
  3. Aug 12, 2021
  4. Aug 11, 2021
  5. Jul 07, 2021
  6. Jul 06, 2021
  7. Jul 01, 2021
    • Nick Mathewson's avatar
      Suppress a clang 12 warning about "suspicious concatenation". · 2bc02b21
      Nick Mathewson authored
      My clang doesn't like it when we write code like this:
      
          char *list[] = {
             "abc",
             "def",
             "ghi"
             "jkl"
          }
      
      It wonders whether we meant to put a comma between "ghi" and "jkl"
      or not, and gives a warning.
      
      To suppress this warning (since in this case, we did mean to omit
      the comma), we just wrap the two strings in parentheses.
      
      Closes #40426; bugfix on 0.4.0.4-rc.
      2bc02b21
  8. Jun 30, 2021
  9. Jun 29, 2021
  10. Jun 28, 2021
  11. Jun 26, 2021
  12. Jun 25, 2021
Loading