Skip to content
Snippets Groups Projects
  1. Sep 25, 2014
    • Nick Mathewson's avatar
      Require two c99 features (midblock decls, designated initializers) · 7f5103ec
      Nick Mathewson authored
      c99 lets us do neat stuff like:
      
          {
            int j, k;
            foo(&j, &k);
            int z = j + k;
          }
      
      and also
          struct point { int x; int y; };
          struct point pt = { .x=5, .y=5 };
      
      This commit makes the configure scripts check to make sure your
      compiler implements them.  It also disables our longstanding warning
      about midblock declarations.
      
      Closes ticket 13233.
      7f5103ec
  2. Sep 23, 2014
  3. Sep 22, 2014
  4. Sep 21, 2014
  5. Sep 20, 2014
  6. Sep 19, 2014
  7. Sep 18, 2014
  8. Sep 17, 2014
  9. Sep 16, 2014
Loading