From 2104840c1db3e0e94551b0ade17e50dc08fd58f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Bourlet?= Date: Fri, 15 Mar 2013 13:15:28 -0700 Subject: [PATCH] Attribute Copyright to Google Inc. --- CMakeLists.txt | 2 +- LICENSE.txt | 5 +++-- README.md | 9 ++++++++- backward.hpp | 2 +- test/_test_main.cpp | 2 +- test/compile.cpp | 2 +- test/divbyzero.cpp | 2 +- test/fib.cpp | 2 +- test/invalidread.cpp | 2 +- test/invalidread2.cpp | 2 +- test/minitrace.cpp | 2 +- test/segfault.cpp | 2 +- test/simplerecursive.cpp | 2 +- test/smalltrace.cpp | 2 +- test/suicide.cpp | 2 +- test/test.hpp | 2 +- 16 files changed, 25 insertions(+), 17 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d6c792..4314448 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # # CMakeLists.txt -# Copyright © 2013 François-Xavier 'Bombela' Bourlet +# Copyright 2013 Google Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE.txt b/LICENSE.txt index a496a5e..269e8ab 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,6 @@ -The MIT License (MIT) Copyright (c) 2013 François-Xavier Bourlet - +Copyright 2013 Google Inc. All Rights Reserved. + +The MIT License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index d9ee713..f5e1e44 100644 --- a/README.md +++ b/README.md @@ -325,5 +325,12 @@ struct ResolvedTrace: public TraceWithLocals { ## Contact and copyright -François-Xavier Bourlet . +François-Xavier Bourlet + +Copyright 2013 Google Inc. All Rights Reserved. MIT License. + +### Disclaimer + +Although this project is owned by Google Inc. this is not a Google supported or +affiliated project. diff --git a/backward.hpp b/backward.hpp index 612765f..1bdba3f 100644 --- a/backward.hpp +++ b/backward.hpp @@ -1,6 +1,6 @@ /* * backward.hpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/_test_main.cpp b/test/_test_main.cpp index 578176b..45a8328 100644 --- a/test/_test_main.cpp +++ b/test/_test_main.cpp @@ -1,6 +1,6 @@ /* * _test_main.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/compile.cpp b/test/compile.cpp index d6be65a..90b8b1f 100644 --- a/test/compile.cpp +++ b/test/compile.cpp @@ -1,6 +1,6 @@ /* * test/compile.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/divbyzero.cpp b/test/divbyzero.cpp index b31e6c6..32b52b9 100644 --- a/test/divbyzero.cpp +++ b/test/divbyzero.cpp @@ -1,6 +1,6 @@ /* * test/divbyzero.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/fib.cpp b/test/fib.cpp index 9b9f2e5..b9ca18c 100644 --- a/test/fib.cpp +++ b/test/fib.cpp @@ -1,6 +1,6 @@ /* * test/fib.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/invalidread.cpp b/test/invalidread.cpp index 22654d3..947a75b 100644 --- a/test/invalidread.cpp +++ b/test/invalidread.cpp @@ -1,6 +1,6 @@ /* * test/invalidread.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/invalidread2.cpp b/test/invalidread2.cpp index d74cc6f..4bf6db5 100644 --- a/test/invalidread2.cpp +++ b/test/invalidread2.cpp @@ -1,6 +1,6 @@ /* * test/invalidread.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/minitrace.cpp b/test/minitrace.cpp index 6cc8e92..de3156c 100644 --- a/test/minitrace.cpp +++ b/test/minitrace.cpp @@ -1,6 +1,6 @@ /* * test/minitrace.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/segfault.cpp b/test/segfault.cpp index 88f6e76..18f4f2e 100644 --- a/test/segfault.cpp +++ b/test/segfault.cpp @@ -1,6 +1,6 @@ /* * test/segfault.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/simplerecursive.cpp b/test/simplerecursive.cpp index 782b20d..05f41cf 100644 --- a/test/simplerecursive.cpp +++ b/test/simplerecursive.cpp @@ -1,6 +1,6 @@ /* * test/simplerecursive.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/smalltrace.cpp b/test/smalltrace.cpp index ccf5122..384b061 100644 --- a/test/smalltrace.cpp +++ b/test/smalltrace.cpp @@ -1,6 +1,6 @@ /* * test/smalltrace.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/suicide.cpp b/test/suicide.cpp index 4bddf10..d51388c 100644 --- a/test/suicide.cpp +++ b/test/suicide.cpp @@ -1,6 +1,6 @@ /* * test/suicide.cpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/test/test.hpp b/test/test.hpp index 998a0f0..a9156aa 100644 --- a/test/test.hpp +++ b/test/test.hpp @@ -1,6 +1,6 @@ /* * test/test.hpp - * Copyright © 2013 François-Xavier 'Bombela' Bourlet + * Copyright 2013 Google Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal