]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
som: move som_type into namespace ue2
authorJustin Viiret <justin.viiret@intel.com>
Wed, 29 Mar 2017 03:33:37 +0000 (14:33 +1100)
committerMatthew Barr <matthew.barr@intel.com>
Wed, 26 Apr 2017 05:18:26 +0000 (15:18 +1000)
src/som/som.h

index 4a38098431390cd6be050571ccd022951a1f76ce..e759cf0a256a23cae74ea9a509b730e769c759b2 100644 (file)
@@ -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:
  * 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