We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434aee6 commit 96af963Copy full SHA for 96af963
XMapLib/MapFunctions.h
@@ -2,10 +2,7 @@
2
#include <map>
3
namespace sds::Utilities::MapFunctions
4
{
5
- /// <summary>
6
- /// Verifies that the key value is in the map{T,H} and sets a reference arg to the value
7
- /// if found.
8
- /// </summary>
+ /// <summary>Verifies that the key value is in the map{T,H} and sets a reference arg to the value if found.</summary>
9
/// <param name="keyValue">key value to check</param>
10
/// <param name="curMap">map of T,H to check the key</param>
11
/// <param name="retVal">will be set to the value the key points to, if found</param>
@@ -19,9 +16,6 @@ namespace sds::Utilities::MapFunctions
19
16
retVal = it->second;
20
17
return true;
21
18
}
22
- else
23
- {
24
- return false;
25
- }
+ return false;
26
27
0 commit comments