From 0a75b1e6e4970a3c4f2e3dddd0f7a270c4a1fd32 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:42:27 +0100 Subject: [PATCH] Add missing licence notice to the `cache` module (#2138) --- vulkano/src/cache.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vulkano/src/cache.rs b/vulkano/src/cache.rs index 34c0f37df8..0bf3a76e61 100644 --- a/vulkano/src/cache.rs +++ b/vulkano/src/cache.rs @@ -1,3 +1,12 @@ +// Copyright (c) 2016 The vulkano developers +// Licensed under the Apache License, Version 2.0 +// or the MIT +// license , +// at your option. All files in the project carrying such +// notice may not be copied, modified, or distributed except +// according to those terms. + use ahash::HashMap; use parking_lot::RwLock; use std::{collections::hash_map::Entry, hash::Hash};