mirror of
https://github.com/archlinux/aur.git
synced 2026-02-16 06:09:01 +01:00
48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
From 711eda620449c080b642fc7cb6118758535ab614 Mon Sep 17 00:00:00 2001
|
|
From: fabien servant <fabien.servant@technicolor.com>
|
|
Date: Tue, 7 Jun 2022 11:07:19 +0200
|
|
Subject: [PATCH] [all] iomanip include missing on vs2022
|
|
|
|
---
|
|
src/aliceVision/keyframe/KeyframeSelector.cpp | 2 +-
|
|
src/software/pipeline/main_LdrToHdrMerge.cpp | 1 +
|
|
src/software/pipeline/main_featureExtraction.cpp | 1 +
|
|
3 files changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/aliceVision/keyframe/KeyframeSelector.cpp b/src/aliceVision/keyframe/KeyframeSelector.cpp
|
|
index bfe2dccc66..2243ab5c3e 100644
|
|
--- a/src/aliceVision/keyframe/KeyframeSelector.cpp
|
|
+++ b/src/aliceVision/keyframe/KeyframeSelector.cpp
|
|
@@ -16,7 +16,7 @@
|
|
#include <tuple>
|
|
#include <cassert>
|
|
#include <cstdlib>
|
|
-
|
|
+#include <iomanip>
|
|
namespace fs = boost::filesystem;
|
|
|
|
namespace aliceVision {
|
|
diff --git a/src/software/pipeline/main_LdrToHdrMerge.cpp b/src/software/pipeline/main_LdrToHdrMerge.cpp
|
|
index b3dc72c3e5..da87d7e379 100644
|
|
--- a/src/software/pipeline/main_LdrToHdrMerge.cpp
|
|
+++ b/src/software/pipeline/main_LdrToHdrMerge.cpp
|
|
@@ -24,6 +24,7 @@
|
|
#include <boost/program_options.hpp>
|
|
#include <boost/filesystem.hpp>
|
|
#include <sstream>
|
|
+#include <iomanip>
|
|
|
|
// These constants define the current software version.
|
|
// They must be updated when the command line is changed.
|
|
diff --git a/src/software/pipeline/main_featureExtraction.cpp b/src/software/pipeline/main_featureExtraction.cpp
|
|
index 70b49fbee8..5d59dfabb5 100644
|
|
--- a/src/software/pipeline/main_featureExtraction.cpp
|
|
+++ b/src/software/pipeline/main_featureExtraction.cpp
|
|
@@ -34,6 +34,7 @@
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <limits>
|
|
+#include <iomanip>
|
|
|
|
// These constants define the current software version.
|
|
// They must be updated when the command line is changed.
|