We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609394c commit d1fa237Copy full SHA for d1fa237
include/nanogui/chroma.h
@@ -17,7 +17,6 @@
17
#include <nanogui/widget.h>
18
19
#include <array>
20
-#include <string_view>
21
22
NAMESPACE_BEGIN(nanogui)
23
include/nanogui/common.h
@@ -16,7 +16,6 @@
16
#pragma once
#include <cstdint>
-#include <array>
#include <utility>
#include <functional>
#include <string>
@@ -26,7 +25,7 @@
26
25
#include <cassert>
27
28
#define NANOGUI_VERSION_MAJOR 0
29
-#define NANOGUI_VERSION_MINOR 2
+#define NANOGUI_VERSION_MINOR 3
30
#define NANOGUI_VERSION_PATCH 0
31
32
#define NANOGUI_STRINGIFY(x) #x
src/python/canvas.cpp
@@ -2,6 +2,7 @@
2
3
#include "python.h"
4
#include <nanobind/stl/array.h>
5
+#include <array>
6
7
class PyCanvas : public Canvas {
8
public:
0 commit comments