Index: src/Common/ScopedMap.h
===================================================================
--- src/Common/ScopedMap.h	(revision 7fdb94e149275ab27bb762fdf43b65253f25b3a8)
+++ src/Common/ScopedMap.h	(revision b12c0367752d66bda0955feaa0c3ac4f7fa51973)
@@ -10,6 +10,6 @@
 // Created On       : Wed Dec 2 11:37:00 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jul 21 22:18:24 2017
-// Update Count     : 2
+// Last Modified On : Mon May 21 15:22:40 2018
+// Update Count     : 3
 //
 
@@ -276,4 +276,9 @@
 	}
 
+	template< typename value_t >
+	std::pair< iterator, bool > insertAt( size_type scope, const Key& key, value_t&& value ) {
+		return insertAt( scope, std::make_pair( key, std::forward<value_t>( value ) ) );
+	}
+
 	Value& operator[] ( const Key &key ) {
 		iterator slot = find( key );
