From 1ab7e5cbd5df61c778664e6bea2b41e81d1438f7 Mon Sep 17 00:00:00 2001 From: Michael Norris Date: Tue, 15 Oct 2024 09:29:59 -0700 Subject: [PATCH] add copyright header (#3948) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/3948 I noticed this file I added was violating the header check. https://www.internalfb.com/intern/opensource/github/repo/1812028399049977/checkup/ Reviewed By: asadoughi Differential Revision: D64341054 fbshipit-source-id: 4564191661acbff193c8ffe970582cef8fb3a490 --- faiss/python/faiss_example_external_module.swig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/faiss/python/faiss_example_external_module.swig b/faiss/python/faiss_example_external_module.swig index b26b9b2fff..e14ba03a72 100644 --- a/faiss/python/faiss_example_external_module.swig +++ b/faiss/python/faiss_example_external_module.swig @@ -1,3 +1,11 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +// This is an example of how an external module can be added via SWIG. %module faiss_example_external_module;