Skip to content

Commit

Permalink
Use "" to access the fmt headers, not <>, or else Windows can't find the
Browse files Browse the repository at this point in the history
fallback library.
  • Loading branch information
davidgiven committed Oct 9, 2024
1 parent e154e41 commit f5b14ca
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion arch/tids990/decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "lib/decoders/fluxpattern.h"
#include "lib/sector.h"
#include <string.h>
#include <fmt/format.h>
#include "fmt/format.h"

/* The Texas Instruments DS990 uses MFM with a scheme similar to a simplified
* version of the IBM record scheme (it's actually easier to parse than IBM).
Expand Down
2 changes: 1 addition & 1 deletion arch/tids990/encoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "lib/image.h"
#include "arch/tids990/tids990.pb.h"
#include "lib/encoders/encoders.pb.h"
#include <fmt/format.h>
#include "fmt/format.h"

static int charToInt(char c)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/core/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <variant>
#include <optional>
#include <regex>
#include <fmt/format.h>
#include "fmt/format.h"

#if defined(_WIN32) || defined(__WIN32__)
#include <direct.h>
Expand Down
2 changes: 1 addition & 1 deletion lib/fluxsink/a2rfluxsink.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <fstream>
#include <sys/stat.h>
#include <sys/types.h>
#include <fmt/chrono.h>
#include "fmt/chrono.h"

namespace
{
Expand Down
2 changes: 1 addition & 1 deletion lib/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <variant>
#include <optional>
#include <regex>
#include <fmt/format.h>
#include "fmt/format.h"

#if defined(_WIN32) || defined(__WIN32__)
#include <direct.h>
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/cpmfs.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "lib/core/globals.h"
#include "lib/vfs/vfs.h"
#include "lib/config.pb.h"
#include <fmt/format.h>
#include "fmt/format.h"
#include <regex>

class CpmFsFilesystem : public Filesystem, public HasBitmap, public HasMount
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/microdos.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "lib/vfs/vfs.h"
#include "lib/config.pb.h"
#include "lib/core/utils.h"
#include <fmt/format.h>
#include "fmt/format.h"

/* See https://www.hp9845.net/9845/projects/hpdir/#lif_filesystem for
* a description. */
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/vfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VFS_H

#include "lib/core/bytes.h"
#include <fmt/format.h>
#include "fmt/format.h"

class Sector;
class Image;
Expand Down
2 changes: 1 addition & 1 deletion scripts/mkdoc.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "lib/globals.h"
#include "lib/proto.h"
#include "lib/flags.h"
#include <fmt/format.h>
#include "fmt/format.h"

extern const std::map<std::string, const ConfigProto*> formats;

Expand Down
2 changes: 1 addition & 1 deletion scripts/mkdocindex.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "lib/globals.h"
#include "lib/proto.h"
#include "lib/flags.h"
#include <fmt/format.h>
#include "fmt/format.h"

extern const std::map<std::string, const ConfigProto*> formats;

Expand Down
2 changes: 1 addition & 1 deletion scripts/protoencode.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <google/protobuf/text_format.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <fstream>
#include <fmt/format.h>
#include "fmt/format.h"
#include "tests/testproto.pb.h"
#include "lib/config.pb.h"
#include <sstream>
Expand Down
2 changes: 1 addition & 1 deletion src/fe-testdevices.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "lib/core/globals.h"
#include "lib/flags.h"
#include "lib/usb/usbfinder.h"
#include <fmt/format.h>
#include "fmt/format.h"

static FlagGroup flags;

Expand Down
2 changes: 1 addition & 1 deletion src/fluxengine.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "lib/core/globals.h"
#include "lib/proto.h"
#include <fmt/format.h>
#include "fmt/format.h"

typedef int command_cb(int agrc, const char* argv[]);

Expand Down
2 changes: 1 addition & 1 deletion tests/configs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "lib/proto.h"
#include "lib/flags.h"
#include "lib/core/bytes.h"
#include <fmt/format.h>
#include "fmt/format.h"

extern const std::map<std::string, const ConfigProto*> formats;

Expand Down

0 comments on commit f5b14ca

Please sign in to comment.