0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 18:38:52 +02:00

ircd:Ⓜ️ Move event/get.h down one level.

This commit is contained in:
Jason Volk 2019-07-07 17:59:55 -07:00
parent f21fccbbd7
commit 3057e9a328
3 changed files with 3 additions and 3 deletions

View file

@ -152,7 +152,6 @@ struct ircd::m::event
#include "index.h"
#include "event_id.h"
#include "fetch.h"
#include "get.h"
#include "cached.h"
#include "prefetch.h"
#include "conforms.h"

View file

@ -1,7 +1,7 @@
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
@ -9,7 +9,7 @@
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_M_EVENT_GET_H
#define HAVE_IRCD_M_GET_H
namespace ircd::m
{

View file

@ -46,6 +46,7 @@ namespace ircd::m
#include "self.h"
#include "id.h"
#include "event/event.h"
#include "get.h"
#include "query.h"
#include "dbs/dbs.h"
#include "vm.h"