Skip to content

Commit

Permalink
Merge pull request GPSBabel#9 from gpsbabel/scratch
Browse files Browse the repository at this point in the history
Fix va_copy not being defined in MSVC 2010.
  • Loading branch information
robertlipe committed Sep 16, 2015
2 parents e142d7d + 401735d commit f72c807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions gbfile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "src/core/logging.h"

#include <assert.h>
#include <stdarg.h> // for va_copy
#include <stdio.h>

#if __WIN32__
Expand Down
1 change: 1 addition & 0 deletions util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h> // for va_copy
#include <time.h>

// First test Apple's clever macro that's really a runtime test so
Expand Down

0 comments on commit f72c807

Please sign in to comment.