summaryrefslogtreecommitdiff
path: root/src/mongo/db/initialize_snmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/initialize_snmp.h')
-rw-r--r--src/mongo/db/initialize_snmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/initialize_snmp.h b/src/mongo/db/initialize_snmp.h
index 4800de0ae9b..5fb85193b43 100644
--- a/src/mongo/db/initialize_snmp.h
+++ b/src/mongo/db/initialize_snmp.h
@@ -30,7 +30,7 @@
#pragma once
-#include "mongo/stdx/functional.h"
+#include <functional>
namespace mongo {
/**
@@ -40,7 +40,7 @@ namespace mongo {
* NOTE: This function may only be called once.
* NOTE: This function is not multithread safe.
*/
-void registerSNMPInitializer(stdx::function<void()> init);
+void registerSNMPInitializer(std::function<void()> init);
/**
* Performs initialization for SNMP enterprise modules, if present, otherwise does nothing.