]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/src/util/set.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / util / set.jam
index fc179134f35cddf5e85c3290f8655004d35315f4..0b460455e89573733280bc93f3c5a8c4f692324f 100644 (file)
@@ -1,14 +1,14 @@
 # Copyright 2001, 2002 Dave Abrahams
 # Copyright 2003 Vladimir Prus
 # Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
+# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
 
 class set
 {
     rule __init__ ( )
     {
-    }  
-    
+    }
+
     rule add ( elements * )
     {
         for local e in $(elements)
@@ -17,19 +17,19 @@ class set
             {
                 $(e) = 1 ;
                 self.result += $(e) ;
-            }            
-        }        
-    }    
-    
+            }
+        }
+    }
+
     rule contains ( element )
     {
         return $($(element)) ;
     }
-    
+
     rule list ( )
     {
         return $(self.result) ;
-    }            
+    }
 }