Skip to content

Commit

Permalink
update examples/auth_label.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed Jan 15, 2024
1 parent e10d629 commit 4208ccd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/auth_label.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
// Compare pairs of columns from the _atom_site table.
// Compiled with: g++-6 -O2 -Iinclude auth_label.cc -lstdc++fs -lz
#include <gemmi/gz.hpp>
#include <gemmi/cif.hpp>
#include <iostream>
#include <experimental/filesystem> // just <filesystem> in C++17
#include <filesystem> // requires C++17

namespace fs = std::experimental::filesystem;
namespace fs = std::filesystem;
namespace cif = gemmi::cif;

void print_differences(cif::Block& block, const std::string& name) {
Expand Down

0 comments on commit 4208ccd

Please sign in to comment.