| 71 | // unnecessary. |
| 72 | |
| 73 | Properties::Properties(AnyMap const& p) : props(p) |
| 74 | { |
| 75 | if (p.GetType() != AnyMap::UNORDERED_MAP_CASEINSENSITIVE_KEYS) |
| 76 | { |
| 77 | props_check::ValidateAnyMap(p); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | Properties::Properties(AnyMap&& p) : props(std::move(p)) |
| 82 | { |
nothing calls this directly
no test coverage detected