From ce8c2435e09184d78dfde47efdda20fa4728b0e9 Mon Sep 17 00:00:00 2001 From: Michael Norris Date: Mon, 14 Oct 2024 10:30:05 -0700 Subject: [PATCH] add copyright header Summary: I noticed this file I added was violating the header check. https://www.internalfb.com/intern/opensource/github/repo/1812028399049977/checkup/ Differential Revision: D64341054 --- 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;