Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 98f04c938203
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d64ceefbc329
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 20, 2020

  1. Add specific define for MINGW to support C *printf Format %z

    Add #define __USE_MINGW_ANSI_STDIO 1
    Required for MSYS2 mingw64 to C *printf Format "%zu" ...
    For more details see https://www.msys2.org/wiki/Porting chapter C *printf Format Specifier issues
    bvernoux authored Nov 20, 2020
    Copy the full SHA
    0092573 View commit details
  2. Merge pull request #343 from bvernoux/patch-1

    Add specific define for MSYS2 mingw64 to support C *printf Format %z
    azonenberg authored Nov 20, 2020
    Copy the full SHA
    d64ceef View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 scopehal/scopehal.h
2 changes: 2 additions & 0 deletions scopehal/scopehal.h
Original file line number Diff line number Diff line change
@@ -36,6 +36,8 @@
#ifndef scopehal_h
#define scopehal_h

#define __USE_MINGW_ANSI_STDIO 1 // Required for MSYS2 mingw64 to support format "%z" ..

#include <vector>
#include <string>
#include <map>