diff options
author | Markus Härer <markus.haerer@gmx.net> | 2024-08-14 00:27:09 +0200 |
---|---|---|
committer | Markus Härer <markus.haerer@gmx.net> | 2024-08-17 04:03:32 +0200 |
commit | b59719ec2bf934720406f5528ea1905646250bac (patch) | |
tree | bbe7dc7e4f25ba7fb123fa4332e9e59fcf685d29 | |
parent | 5862da7009e7053462c8ac4d10e012baa3bd038e (diff) |
TestConversionMatrix: Add missing `<iomanip>` include
(cherry picked from commit 127e70e5cfbc3e7cd696807c7e4b9ce10f0b9cd7)
-rw-r--r-- | xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/test/TestConversionMatrix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/test/TestConversionMatrix.cpp b/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/test/TestConversionMatrix.cpp index cdc8b91e0e..18f76ace0d 100644 --- a/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/test/TestConversionMatrix.cpp +++ b/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/test/TestConversionMatrix.cpp @@ -10,6 +10,7 @@ #include "cores/VideoPlayer/VideoRenderers/VideoShaders/ConversionMatrix.h" #include "xbmc/utils/MathUtils.h" +#include <iomanip> #include <iostream> #include <gtest/gtest.h> |