Remove dead code

This commit is contained in:
Norman Feske 2020-05-05 21:37:18 +02:00
parent 9d67f9fc8e
commit 04aeaa25e5
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
/*
* \brief Copy a platform-capability to another protection domain.
* \author Stefan Kalkowski
* \date 2012-03-09
*/
/*
* Copyright (C) 2012-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#include <util/string.h>
#include <base/native_capability.h>
using namespace Genode;
void Cap_dst_policy::copy(void* dst, Native_capability_tpl<Cap_dst_policy>* src) {
memcpy(dst, src, sizeof(Native_capability_tpl<Cap_dst_policy>)); }