-// Copyright (C) 2009-2018 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2009-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(copy3, example_name);
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(example_name, copy);
}
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(rdata_afsdb));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(rdata_afsdb));
}
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(this->rdata_ds_like));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(this->rdata_ds_like));
}
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(rdata_minfo));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(rdata_minfo));
}
-// Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(rdata_srv));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(rdata_srv));
}
-// Copyright (C) 2010-2017 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2010-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(rdata_tsig));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(rdata_tsig));
}
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, rdata4.compare(rdata1));
// Self assignment
- rdata2 = rdata2;
+ rdata2 = *&rdata2;
EXPECT_EQ(0, rdata2.compare(rdata1));
}
-// Copyright (C) 2010-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2010-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
EXPECT_EQ(0, copy3.compare(rdata_unknown));
// Self assignment
- copy = copy;
+ copy = *©
EXPECT_EQ(0, copy.compare(rdata_unknown));
}
-// Copyright (C) 2010-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2010-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
delete copy2;
compareTSIGKeys(original, copy3);
- // self assignment
- copy = copy;
+ // Self assignment
+ copy = *©
compareTSIGKeys(original, copy);
}