Browse Source

cpu: move Doxygen to header file

pull/104/head
Rémi Denis-Courmont 6 years ago
parent
commit
b4c52cccf2
  1. 3
      include/vlc_cpu.h
  2. 3
      src/misc/cpu.c

3
include/vlc_cpu.h

@ -26,6 +26,9 @@
#ifndef VLC_CPU_H
# define VLC_CPU_H 1
/**
* Retrieves CPU capability flags.
*/
VLC_API unsigned vlc_CPU(void);
# if defined (__i386__) || defined (__x86_64__)

3
src/misc/cpu.c

@ -251,9 +251,6 @@ out:
cpu_flags = i_capabilities;
}
/**
* Retrieves pre-computed CPU capability flags
*/
VLC_WEAK unsigned vlc_CPU(void)
{
static vlc_once_t once = VLC_STATIC_ONCE;

Loading…
Cancel
Save