Use import utempl instead import utempl.*
This commit is contained in:
parent
4396d3525a
commit
b440c81474
15 changed files with 15 additions and 21 deletions
|
@ -1,6 +1,5 @@
|
|||
import std;
|
||||
import utempl.attributes;
|
||||
import utempl.type_list;
|
||||
import utempl;
|
||||
#include <utempl/macro.hpp>
|
||||
|
||||
template <typename T>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import fmt;
|
||||
import utempl.go_interface;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
struct SomeInterfaceImpl {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl.tuple;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.menu;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.meta_info;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.overloaded;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl.tuple;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl.tuple;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import utempl.utils;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include <cassert>
|
||||
import utempl.utils;
|
||||
import utempl.tuple;
|
||||
import utempl.overloaded;
|
||||
import utempl;
|
||||
import std;
|
||||
|
||||
auto main() -> int {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module;
|
||||
#include <gtest/gtest.h>
|
||||
export module tests.go_interface;
|
||||
import utempl.go_interface;
|
||||
import utempl;
|
||||
|
||||
namespace utempl {
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module;
|
||||
#include <gtest/gtest.h>
|
||||
export module tests.menu;
|
||||
import utempl.menu;
|
||||
import utempl;
|
||||
|
||||
namespace utempl {
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module;
|
||||
#include <gtest/gtest.h>
|
||||
export module tests.overloaded;
|
||||
import utempl.overloaded;
|
||||
import utempl;
|
||||
|
||||
namespace utempl {
|
||||
|
||||
|
|
Loading…
Reference in a new issue