From: Justin Viiret Date: Wed, 29 Mar 2017 03:33:37 +0000 (+1100) Subject: som: move som_type into namespace ue2 X-Git-Tag: v4.5.0^2~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d23a7e2d35b3cda89bbe9a017e2c44003dd9db9;p=thirdparty%2Fvectorscan.git som: move som_type into namespace ue2 --- diff --git a/src/som/som.h b/src/som/som.h index 4a380984..e759cf0a 100644 --- a/src/som/som.h +++ b/src/som/som.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Intel Corporation + * Copyright (c) 2015-2017, Intel Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -26,17 +26,22 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/** \file +/** + * \file * \brief Common SOM definitions. */ #ifndef UE2_SOM_H #define UE2_SOM_H +namespace ue2 { + /** \brief Enumeration specifying a start of match behaviour. */ enum som_type { SOM_NONE, //!< No SOM required SOM_LEFT //!< Exact leftmost SOM }; +} // namespace ue2 + #endif // UE2_SOM_H