missing C++ header #22288
missing C++ header
#22288
-
I am building a new package which uses nlohmann's json but can't get past this error. sudo apt-get install nlohmann-json3-dev Also iam using docker and have been developing from github actions. I don't know what to do . #include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <sstream>
#include <filesystem>
#include <unordered_map>
#include <nlohmann/json.hpp>
using namespace std;
namespace fs = filesystem;
using json = nlohmann::json;
|
Beta Was this translation helpful? Give feedback.
Answered by
TomJo2000
Nov 16, 2024
Replies: 1 comment 3 replies
-
Termux does not split out headers into separate |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
TomJo2000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Termux does not split out headers into separate
*-dev
packages.This header should be part of the standard
nlohmann-json
package.In fact it's right where it should be in the package.