aboutsummaryrefslogtreecommitdiff
path: root/src/windows
diff options
context:
space:
mode:
authorVyacheslav Moklev <slavam2605@bk.ru>2019-02-14 12:57:09 +0300
committerVyacheslav Moklev <slavam2605@bk.ru>2019-02-14 12:57:09 +0300
commit586f0875750c77b95f52610381f8c24f021aa270 (patch)
treeb2774eb2d1bec2d051fda371d14e721ee10a625d /src/windows
parent9349ef4f697543a80d097e556fc38df7c6ef69fa (diff)
downloadjdk8u_jdk-586f0875750c77b95f52610381f8c24f021aa270.tar.gz
Fix compilation for JBRE8 (avoid using C++11 feature)jb8u202-b1502
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/native/sun/windows/awt_FileDialog.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/windows/native/sun/windows/awt_FileDialog.cpp b/src/windows/native/sun/windows/awt_FileDialog.cpp
index 1e5d78da69..3c797c1ea4 100644
--- a/src/windows/native/sun/windows/awt_FileDialog.cpp
+++ b/src/windows/native/sun/windows/awt_FileDialog.cpp
@@ -94,8 +94,6 @@ class SmartHolderBase {
public:
SmartHolderBase() : m_pointer(NULL) {}
- SmartHolderBase& operator=(const SmartHolderBase&) = delete;
-
void Attach(T* other) {
Clean();
m_pointer = other;