Title: [161792] trunk/Source/_javascript_Core
- Revision
- 161792
- Author
- [email protected]
- Date
- 2014-01-11 19:00:51 -0800 (Sat, 11 Jan 2014)
Log Message
Try to prevent the Vector copy constructor from being instantiated.
* inspector/InspectorAgentRegistry.cpp:
(Inspector::InspectorAgentRegistry::InspectorAgentRegistry):
* inspector/InspectorAgentRegistry.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (161791 => 161792)
--- trunk/Source/_javascript_Core/ChangeLog 2014-01-12 02:56:20 UTC (rev 161791)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-01-12 03:00:51 UTC (rev 161792)
@@ -1,5 +1,13 @@
2014-01-11 Anders Carlsson <[email protected]>
+ Try to prevent the Vector copy constructor from being instantiated.
+
+ * inspector/InspectorAgentRegistry.cpp:
+ (Inspector::InspectorAgentRegistry::InspectorAgentRegistry):
+ * inspector/InspectorAgentRegistry.h:
+
+2014-01-11 Anders Carlsson <[email protected]>
+
Try something else.
* inspector/InspectorAgentRegistry.cpp:
Modified: trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp (161791 => 161792)
--- trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp 2014-01-12 02:56:20 UTC (rev 161791)
+++ trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp 2014-01-12 03:00:51 UTC (rev 161792)
@@ -37,6 +37,10 @@
{
}
+InspectorAgentRegistry::InspectorAgentRegistry(const InspectorAgentRegistry&)
+{
+}
+
InspectorAgentRegistry::~InspectorAgentRegistry()
{
}
Modified: trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h (161791 => 161792)
--- trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h 2014-01-12 02:56:20 UTC (rev 161791)
+++ trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h 2014-01-12 03:00:51 UTC (rev 161792)
@@ -40,6 +40,8 @@
InspectorAgentRegistry();
~InspectorAgentRegistry();
+ InspectorAgentRegistry(const InspectorAgentRegistry&);
+
void append(std::unique_ptr<InspectorAgentBase>);
void didCreateFrontendAndBackend(InspectorFrontendChannel*, InspectorBackendDispatcher*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes