2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-20 02:32:13 +00:00

Replace refs to boost.org witth bfgroup.xyz.

This commit is contained in:
Rene Rivera
2021-02-20 21:35:16 -06:00
parent 8087d10d60
commit c9cc1ae2ed
743 changed files with 1897 additions and 1990 deletions

View File

@@ -1,7 +1,7 @@
/* Copyright 2004. Vladimir Prus
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "../lists.h"

View File

@@ -1,7 +1,7 @@
/* Copyright Vladimir Prus 2003.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "../constants.h"

View File

@@ -1,8 +1,8 @@
/*
* Copyright 2013 Steven Watanabe
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "../object.h"

View File

@@ -1,8 +1,8 @@
/*
* Copyright 2003. Vladimir Prus
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "../mem.h"
@@ -42,7 +42,7 @@ LIST * regex_split( FRAME * frame, int flags )
LISTITER iter = list_begin( args );
s = list_item( iter );
separator = list_item( list_next( iter ) );
re = regex_compile( separator );
prev = pos = object_str( s );
@@ -105,9 +105,9 @@ LIST * regex_replace( FRAME * frame, int flags )
match = list_item( iter );
iter = list_next( iter );
replacement = list_item(iter );
re = regex_compile( match );
string_new( buf );
pos = object_str( s );

View File

@@ -1,8 +1,8 @@
/*
* Copyright Vladimir Prus 2003.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "../native.h"

View File

@@ -1,6 +1,6 @@
/* Copyright Vladimir Prus 2003. Distributed under the Boost */
/* Software License, Version 1.0. (See accompanying */
/* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */
/* file LICENSE.txt or copy at https://www.bfgroup.xyz/b2/LICENSE.txt) */
#include "../native.h"
#include "../object.h"
@@ -20,8 +20,8 @@
LIST *set_difference( FRAME *frame, int flags )
{
LIST* b = lol_get( frame->args, 0 );
LIST* a = lol_get( frame->args, 1 );
LIST* b = lol_get( frame->args, 0 );
LIST* a = lol_get( frame->args, 1 );
LIST* result = L0;
LISTITER iter = list_begin( b ), end = list_end( b );