1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

Make 'nix dev-shell' a deprecated alias for 'nix develop'

This commit is contained in:
Eelco Dolstra 2020-06-04 11:14:19 +02:00
parent 61e3d598b6
commit 0f44b60e6d
4 changed files with 13 additions and 5 deletions

View file

@ -459,8 +459,7 @@ string base64Encode(const string & s);
string base64Decode(const string & s);
/* Get a value for the specified key from an associate container, or a
default value if the key doesn't exist. */
/* Get a value for the specified key from an associate container. */
template <class T>
std::optional<typename T::mapped_type> get(const T & map, const typename T::key_type & key)
{